-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathlogin2.html
32 lines (28 loc) · 1.11 KB
/
login2.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login form using nested table</title>
</head>
<body bgcolor="skyblue">
<table width="30%" border="0" align="center">
<tr>
<td align="center" height="350px" bgcolor="white">
<table width="90%" border="1">
<tr>
<td align="center" bgcolor="tomato" height="300px">
<img src="user.png" width="100px" height="100px"></imgh>
<form method="post">
<p><input type="email" name="emailid" placeholder="Enter Email Id"></p>
<p><input type="password" name="pass" placeholder="Enter Password"></p>
<p><input type="submit" name="login" value="Login"> </p>
</form>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>