博客列表 >0930作业

0930作业

曾小贱_
曾小贱_原创
2020年10月05日 23:57:30709浏览
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>会员注册</title>
  7. </head>
  8. <body>
  9. <header class="title">欢迎注册本站会员</header>
  10. <form
  11. action="check.php"
  12. class="register"
  13. method="post"
  14. enctype="multipart/form-data"
  15. ></form>
  16. <label for="uesrname">昵称</label>
  17. <input
  18. type="text"
  19. name="username"
  20. id="username"
  21. placeholder="请输入您的昵称"
  22. required
  23. />
  24. <label for="password">密码</label>
  25. <input type="password" placeholder="6-8位数字及字母" />
  26. <label for="phonenumber">请输入手机号</label>
  27. <input type="tel" placeholder="请输入您的手机号" />
  28. <button>获取验证码</button>
  29. <label for="text">请输入验证码</label>
  30. <input type="text" placeholder="请输入手机收到的验证码" />
  31. <label for="text">请选择您的性别</label>
  32. <input type="radio" name="gender" id="mela" value="mela" /><label for="mela"
  33. ></label
  34. >
  35. <input type="radio" name="gender" id="femela" value="femela" /><label
  36. for="femela"
  37. ></label
  38. >
  39. <label for="#">请选择您的爱好</label>
  40. <input
  41. type="checkbox"
  42. name="hobby[]"
  43. id="music"
  44. value="music"
  45. checked
  46. /><label for="music">音乐</label>
  47. <input type="checkbox" name="hobby[]" id="art" value="art" /><label
  48. for="art"
  49. >艺术</label
  50. ><input type="checkbox" name="hobby[]" id="sleep" value="sleep" /><label
  51. for="sleep"
  52. >睡觉</label
  53. >
  54. <label for="edu[]">学历</label>
  55. <select name="edu[]" id="edu">
  56. <option value="1" selected>本科</option>
  57. <option value="2">硕士</option>
  58. <option value="3">博士</option>
  59. </select>
  60. <label for="user-pic">头像</label>
  61. <input type="file" name="user_pic" id="user-pic" />
  62. <input type="hidden" name="MAX_FILE_SIZE" value="80000" />
  63. <div class="user-pic" style="grid-column: 2"></div>
  64. <label for="comment">备注</label>
  65. <textarea
  66. name="comment"
  67. id="comment"
  68. placeholder="不能超过120个字符"
  69. cols="30"
  70. rows="10"
  71. ></textarea>
  72. <span class="tips">还能输入<em>50</em>个字</span>
  73. <button>立即注册</button>
  74. </body>
  75. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议