add.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
  8. <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
  9. <script src="https://cdn.staticfile.org/tswitter-boottrap/3.3.7/js/bootstrap.min.js"></script>
  10. <title>添加信息</title>
  11. </head>
  12. <body>
  13. <h2 align="center">添加教师信息</h2>
  14. <div align="center" backgroundcolor="blue">
  15. <!-- <img src="images/qiao.jpg"> -->
  16. </div>
  17. <form name="form1" action=addTeacher.jsp method="post">
  18. <table class="table table-hover">
  19. <tbody>
  20. <tr class="success">
  21. <th align="center">教师姓名</th>
  22. <th>教师年龄</th>
  23. <th>教师性别</th>
  24. </tr>
  25. </tbody>
  26. <tr class="success">
  27. <th><input type="text" name="TeaName"></th>
  28. <th><input type="text" name="TeaAge"></th>
  29. <th><input type="text" name="TeaSex"></th>
  30. </tr>
  31. </tbody>
  32. </table>
  33. <p></p>
  34. <div align="center">
  35. <input type="submit" value="点击确认"></a>
  36. </div>
  37. </form>
  38. </body>
  39. </html>