forked from vishantrathi/woolconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLog in.html
36 lines (33 loc) · 1.23 KB
/
Log in.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
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="login.css">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
</head>
<body>
<div class="container">
<div class="nav">
<a href="#" class="logo"><img src="./images/DALL·E 2023-09-11 20.54.30 - Make exact like this image.png" alt="logo" height="50px" width="50px"></a>
<form action="login.php" method="post">
<h2>Login</h2>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
</div>
<div class="form-group">
<button type="submit" class="login-btn">Login</button>
</div>
<div class="form-group">
<a href="#" class="forgot-password">Forgot Password?</a>
</div>
</form>
</div>
</body>
</html>