<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>关于首页</title>
</head>
<h1 align="center">登陆界面</h1>
<body>
<form action="">
<div id="login" style="margin:0 0 0 40%; border:1px solid black; width:300px" >
<br/>
<ul style="margin:0 0 0 0; ">
<li style="list-style-type:none; float:left; width:80px;"><!--为了对齐用户名和密码-->
用户名:
</li>
<li style="list-style-type:none; float:left;">
<input type="text" name="userName" value="" />
</li>
</ul>
<br />
<ul>
<li style="list-style-type:none; float:left; width:80px;" >
密码:
</li>
<li style="list-style-type:none; float:left;">
<input type="text" name="password1" value="" />
</li>
</ul>
<br />
<ul>
<li style="list-style-type:none; float:left; width:80px;" >
重复密码:
</li>
<li style="list-style-type:none; float:left;">
<input type="text" name="password2" value="" />
</li>
</ul>
<br />
<ul >
<li style="list-style-type:none; margin:0 0 0 70%"><!--为了使提交按钮在右边-->
<input type="submit" value="提交"/>
</li>
</ul>
</div>
</form>
</body>
</html>