Blogger Information
Blog 1
fans 0
comment 0
visits 220
Related recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
注册表单作业
PHP中文网用户-7453906
Original
220 people have browsed it

注册表单

  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>表单元素-注册</title>
  8. </head>
  9. <body>
  10. <form action="register.php" method="post">
  11. <fieldset>
  12. <legend>新用户注册</legend>
  13. <div class="username">
  14. <label for="uname">用户名:</label>
  15. <input name="uname" placeholder="不少于6位" type="text" id="uname" autofocus>
  16. </div>
  17. <div class="email">
  18. <label for="email">邮 箱:</label><input type="email" id="email" name="email" placeholder="username@email.com" required>
  19. </div>
  20. <div class="password">
  21. <label for="password">密 码:</label><input type="password" name="password" id="password" required placeholder="请输入至少6位非纯数字字符串">
  22. </div>
  23. <div class="sex">
  24. <label for="male">性 别:</label>
  25. <input type="radio" name="sex" id="male" checked><label for="male"></label>
  26. <input type="radio" name="sex" id="female"><label for=""></label>
  27. <input type="radio" name="sex" id="baomi"><label for="baomi">保密</label>
  28. </div>
  29. <div class="hobby">
  30. <label for="shoot">爱 好:</label>
  31. <input type="checkbox" name="hobby[]" id="shoot"><label for="shoot">摄影</label>
  32. <input type="checkbox" name="hobby[]" id="game"><label for="game">游戏</label>
  33. <input type="checkbox" name="hobby[]" id="program"><label for="program">编程</label>
  34. <input type="checkbox" name="hobby[]" id="travel"><label for="travel">旅游</label>
  35. </div>
  36. <div class="edu">
  37. <label for="edu">学 历:</label>
  38. <select name="edu" id="edu" required>
  39. <option value="" selected disabled>-请选择-</option>
  40. <option value="1">小学</option>
  41. <option value="2">中学</option>
  42. <option value="3">大学</option>
  43. </select>
  44. </div>
  45. <button>注 册</button>
  46. </fieldset>
  47. </form>
  48. </body>
  49. </html>

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!