Blogger Information
Blog 20
fans 0
comment 0
visits 8587
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
用户注册表单,至少用到5个以上的表单控件
A 管志岗-电商策划
Original
541 people have browsed it

用户注册表单,至少用到5个以上的表单控件

  1. <!DOCTYPE html>
  2. <html lang="en">
  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>用户注册表单,至少用到5个以上的表单控件</title>
  8. </head>
  9. <body>
  10. <div class="body">
  11. <h2>用户注册</h2>
  12. <form action="register.php" method="post" enctype="multipart/form-data">
  13. <fieldset>
  14. <legend>基本信息</legend>
  15. <div class="username">
  16. <label for="name">用户名:</label><input type="text" name="username" id="name" placeholder="用户名不少于6位">
  17. </div>
  18. <div class="password">
  19. <label for="pwd">密码:</label><input type="password" name="" id="pwd" placeholder="填写你的密码">
  20. <button type="button" onclick="this.previousElementSibling.type='text'">显示密码</button>
  21. </div>
  22. <div class="tell">
  23. <label for="tel">联系方式:</label><input type="tel" name="tell" id="tel" placeholder="填写你的手机号">
  24. </div>
  25. <div class="email">
  26. <label for="email">邮箱:</label><input type="email" name="email" id="email" placeholder="填写你的邮箱">
  27. </div>
  28. <div class="file">
  29. <label for="pic_file">上传营业执照:</label>
  30. <input type="file" name="pic" id="pic_file">
  31. <button type="button">上传</button>
  32. </div>
  33. </fieldset>
  34. <button>提交</button>
  35. </form>
  36. </div>
  37. </body>
  38. </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!