Blogger Information
Blog 10
fans 0
comment 0
visits 3326
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表单控件提交
手机用户7232767
Original
308 people have browsed it

{<!DOCTYPE html>

<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>表单作业</title>
</head>

<body>
<h2 class="title">用户注册</h2>
<form action="" method="post" enctype="application/x-www-form-urlencoded">

  1. <fieldset>
  2. <legend>基本信息</legend>
  3. <div class="username">
  4. <label for="uname">用户名:</label>
  5. <input type="text" name="username" id="uname" placeholder="不少于6位" required>
  6. </div>
  7. <div class="password">
  8. <label for="psw">密码:</label>
  9. <input type="text" name="password" id="psw" placeholder="不少于6位数字" required>
  10. </div>
  11. <div class="email">
  12. <label for="myemail">邮箱:</label>
  13. <input type="email" name="email" id="myemail" placeholder="user@email.com" required>
  14. </div>
  15. <div class="upload">
  16. <label for="upload">头像:</label>
  17. <input type="file" name="user_pic" id="upload" >
  18. <button type="button">上传</button>
  19. </div>
  20. <div class="hobby">
  21. <label>爱好:</label>
  22. <label for="music">音乐</label><input type="checkbox" name="hobby[]" id="music" value="music">
  23. <label for="basketball">篮球</label><input type="checkbox" name="hobby[]" id="basketball" value="basketball">
  24. <label for="tour">旅游</label><input type="checkbox" name="hobby[]" id="tour" value="tour">
  25. <label for="mv">电影</label><input type="checkbox" name="hobby[]" id="mv" value="mv">
  26. </div>
  27. </fieldset>
  28. <button>提交</button>
  29. </form>

</body>
</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