-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.36 KB
/
index.html
File metadata and controls
32 lines (29 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign In</title>
<link rel="stylesheet" href="./Styles.css">
</head>
<body>
<div class="flex-outer">
<div class="flex-inner">
<p style="font-size: 25px; margin: 0px;"><strong>Welcome Back</strong></p>
<p style="font-size: 16px; color: rgb(100, 100, 100); margin: 4px;">Please Enter Your Details</p>
<br>
<form action="">
<label for="email">Email:</label> <br>
<input type="email" name="email" id="email" placeholder="abc@gmail.com" required>
<br>
<label for="password">Password:</label> <br>
<input type="password" name="password" id="password" placeholder="Enter Your Password" pattern="(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d!@#$%^&*]{8,20}" required>
<br>
<a href="./public/forgot.html" id="forgot"><Strong>Forgot Password?</Strong></a>
<input type="submit" name="submit" id="submit" value="Sign In">
<p style="text-align: center; font-size: 16px; color: rgb(100, 100, 100);">Don't have an account? <a href="./public/SignUp.html"><strong>Signup</Strong></a></p>
</form>
</div>
</div>
</body>
</html>