12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
- <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
- <script src="https://cdn.staticfile.org/tswitter-boottrap/3.3.7/js/bootstrap.min.js"></script>
- <title>添加信息</title>
- </head>
- <body>
- <h2 align="center">添加教师信息</h2>
- <div align="center" backgroundcolor="blue">
- <!-- <img src="images/qiao.jpg"> -->
- </div>
- <form name="form1" action=addTeacher.jsp method="post">
- <table class="table table-hover">
- <tbody>
- <tr class="success">
- <th align="center">教师姓名</th>
- <th>教师年龄</th>
- <th>教师性别</th>
- </tr>
- </tbody>
- <tr class="success">
- <th><input type="text" name="TeaName"></th>
- <th><input type="text" name="TeaAge"></th>
- <th><input type="text" name="TeaSex"></th>
- </tr>
- </tbody>
- </table>
- <p></p>
- <div align="center">
- <input type="submit" value="点击确认"></a>
- </div>
- </form>
- </body>
- </html>
|