forked from nitinravi/Vehiclepool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (21 loc) · 717 Bytes
/
index.html
File metadata and controls
38 lines (21 loc) · 717 Bytes
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
<!DOCTYPE html>
<head>
<title>Login Form Design</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="box">
<img src="user.png" class="user">
<h1>Login</h1>
<form name="myform" action = "login.php" method = "POST">
<p>Username</p>
<input type="text" name="username" placeholder=" " required="">
<p>Password</p>
<input type="password" name="password" placeholder="" required="">
<input type="submit" name="submit" value="Login">
<br><br>
<a href="register.html">Register for new account ?</a>
</form>
</div>
</body>
</html>