博客列表 >1018作业——注册表单

1018作业——注册表单

手机用户284061708
手机用户284061708原创
2022年10月20日 05:09:04348浏览

注册表单demo


<!-- 画一个用户注册的框 -->

  1. <center >
  2. <fieldset style="width: 40%; ">
  3. <legend><H2>用户注册</H2></legend>
  4. <div class="register" style=" width:50%; " >
  5. <form action="register.php" method="post" nctype="application/x-www-form-urlencoded" target="_blank" id="register">
  6. <!-- 用户名 -->
  7. <div class="username">
  8. <label for="uname">姓名: </label>
  9. <input type="text" id="uname" name="username" placeholder="请输入用户名" maxlength="20" required ><span style="color:red" >*</span>
  10. </div>
  11. <!-- 密码 -->
  12. <div class="password">
  13. <label for="psw">密码:</label>
  14. <input type="password" id="psw" name="password" placeholder="请输入密码" min="6" max="16" required><span style="color:red" >*</span>
  15. </div>
  16. <!-- 确认密码 -->
  17. <div class="repwd"></label>
  18. <label for="repassword">确认密码:</label>
  19. <input type="password" id="repassword" name="password" placeholder="请再次输入密码" min="6" max="16" required><span style="color:red" >*</span>
  20. </div>
  21. <!-- 手机号码 -->
  22. <div class="phone"></label>
  23. <label for="phone">手机号码:
  24. <input type="number" id="phone" value="" name="phone" placeholder="请输入手机号" min="6" max="13" style="width: 165px;">
  25. </div>
  26. <!-- 出生日期 -->
  27. <div class="shengri">
  28. <label for="shengri">出生日期:</label>
  29. <input type="date" name="shengri" value="2022-10-18" id="shengri" style="width: 160px;" />
  30. </div>
  31. <!-- 邮箱 -->
  32. <div class="email">
  33. <label for="imail">邮箱:</label>
  34. <input type="email" id="email" value="" name="email" placeholder="user@email.com">
  35. </div>
  36. <!-- 性别 -->
  37. <div class="sex">
  38. <label for="secret">性别:</label>
  39. <input type="radio" name="sex" value="man" id="man"><label for="man"></label>
  40. <input type="radio" name="sex" value="women" id="women" ><label for="women"></label>
  41. <input type="radio" name="sex" value="secret" id="secret" checked><label for="secret">保密</label>
  42. </div>
  43. <!-- 个别简介 -->
  44. <div class="jianjie">
  45. <label for="jianjie">个人简介:</label>
  46. <textarea name="jianjie" id="jianjie" cols="30" rows="10"></textarea>
  47. </div>
  48. <!-- 提交 -->
  49. <button type="submit">注册</button>
  50. <button type="button">取消</button>
  51. </form>
  52. </div>
  53. </fieldset>
  54. </center>

```

实现效果如下图:

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议