-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusing_forms.html
More file actions
52 lines (44 loc) · 1.49 KB
/
Copy pathusing_forms.html
File metadata and controls
52 lines (44 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
<style>
body{ margin: 0px; padding: 0px; box-sizing: border-box;}
div{ margin-top: 20px;}
table{ background-color: antiquewhite;}
table caption{ padding: 20px;}
.input{ width: 400px; padding: 10px;}
.btn{ padding: 5px 20px; margin: 0px 5px; border-radius: 5px;}
label{ font-weight: bold;}
</style>
</head>
<body>
<div>
<form>
<table width="auto" border="0" align="center" cellspacing="10px" cellpadding="10px">
<caption><strong>Login Page</strong> </caption>
<tr>
<td><label>User Name:</label></td>
<td></td>
<td><input type="text" placeholder="Enter User Name" class="input"/></td>
</tr>
<tr>
<td><label>Password:</label></td>
<td></td>
<td><input type="password" placeholder="Enter Password" class="input"/></td>
</tr>
<tr>
<td></td>
<td></td>
<td>
<input type="submit" class="btn">
<input type="reset" class="btn">
</td>
</tr>
</table>
</form>
</div>
</body>
</html>