76 lines
1.9 KiB
HTML
76 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<form onsubmit="save(event)">
|
|
<h2>Thông Tin Học Viên</h2>
|
|
<div>
|
|
<span>Họ Và Tên </span>
|
|
<input type="text" name="name">
|
|
</div>
|
|
<div>
|
|
<span>Email</span>
|
|
<input type="email" name="email">
|
|
</div>
|
|
<div>
|
|
<span>Số Điện Thoại</span>
|
|
<input type="text" name="phoneNumber">
|
|
</div>
|
|
<div>
|
|
<span>Quê quán </span>
|
|
<input type="text" name="address">
|
|
</div>
|
|
<div>
|
|
<span>Giới Tính </span>
|
|
Nam <input type="radio" name="gender" value="true">
|
|
Nữ <input type="radio" name="gender" value="false">
|
|
</div>
|
|
<button>lưu</button>
|
|
</form>
|
|
|
|
<input id="se_ip" type="text"> <button onclick="search()">search</button>
|
|
|
|
|
|
<table border="1">
|
|
<thead>
|
|
<tr>
|
|
<th>#</th>
|
|
<th>Họ Tên</th>
|
|
<th>Email</th>
|
|
<th>Điện Thoại</th>
|
|
<th>Địa Chỉ</th>
|
|
<th>Giới Tính</th>
|
|
<th>Hành Động</th>
|
|
<th>
|
|
<button onclick="sapXep()">Sắp Xếp Alpha</button>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- <tr>
|
|
<td>1</td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td>
|
|
<button>Xóa</button>
|
|
<button>Sửa</button>
|
|
</td>
|
|
<td></td>
|
|
</tr> -->
|
|
</tbody>
|
|
</table>
|
|
|
|
<script src="main.js"></script>
|
|
</body>
|
|
|
|
</html> |