<!DOCTYPE HTML> <html lang="zh-cn"> <head> <title>form表单作业</title> <meta charset="utf-8"> </head> <body align="center"> <form method="GET"> <label for="register_username">请输入用户名:</label><br/> <input type="text" name="username" id="register_username"> <br/><br/> <label for="register_password1">请输入密码:</label><br/> <input type="password" name="password1" id="register_password1"> <br/><br/> <label for="register_password2">请再次输入密码:</label><br/> <input type="password" name="password2" id="register_password2"> <br/><br/> <label>输入你的邮箱</label><br/> <input type="email" name="email"><br/><br/> <label>选择你的出生日期</label><br/> <input type="month" name="bdaymonth"> <br/><br/> <input type="radio" name="sex" value="男" checked>男 <input type="radio" name="sex" value="女">女 <br/><br/> <input type="submit" value="注册"> </form> </body> </html>