1.写一个会员注册的完成表单(只需要html部分,只需要提交关键代码即可),重点在于掌握控件元素与常用属性上
<div align="center">
<h3 class="title">用户注册</h3>
<form action="check.php" method="post" class="register">
<label for="username">用户名:</label>
<input type="text" id="username" name="username" autofocus/><br/>
<label for="password">设置密码:</label>
<input type="password" id="password" name="password"/><br/>
<label for="password1">确认密码:</label>
<input type="password" id="password1" name="password1"/><br/>
<label for="iphone">验证手机:</label>
<input type="text" id="iphone" name="iphone"/><br/>
<label for="note">验证短信:</label>
<input type="text" id="note" name="note"/>
<button type="button">获取验证码</button>
<br/>
<button type="submit">立即注册</button>
</form>
</div>