forked from dollychu/Database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
73 lines (49 loc) · 1.55 KB
/
Copy pathtest.html
File metadata and controls
73 lines (49 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<title> User's Data </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
</head>
<body>
<h2 align="center">Welcome~</h2>
<div class="container-fluid">
<div class="row">
<div class="col-sm-4" align="center" style="background-color:lavenderblush;">Login</div>
<div class="col-sm-4" align="center" style="background-color:lavender;">Main Page</div>
<div class="col-sm-4" align="center" style="background-color:lavenderblush;">Account</div>
</div>
<form action="insertData.php" method="post">
<table class="table">
<thead>
<tr align="center">
<th>User Information</th>
</tr>
</thead>
<tbody>
<tr>
<td>Name: </td>
<td class="placeholder">name</td>
</tr>
</tbody>
</table>
<center><table border="1" width="400" height="255">
<tr>
<td colspan="5" align="center"> User's Information</td>
</tr>
<tr>
<td align="right">Name: </td><td><input type="text" name="name"</td>
</tr>
<tr>
<td align="right">Pass: </td><td><input type="password" name="passwd"</td>
</tr>
<tr>
<td colspan="5" align="center"><input type="submit" name="submit" value="submit"</td>
</tr>
</table></center>
</form>
</div>
</body>
</html>