Spaces:
Sleeping
Sleeping
Update templates/login.html
Browse files- templates/login.html +20 -20
templates/login.html
CHANGED
@@ -7,28 +7,28 @@
|
|
7 |
<link rel="stylesheet" href="/static/styles.css">
|
8 |
</head>
|
9 |
<body>
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
</div>
|
22 |
-
<div class="input-group">
|
23 |
-
<input type="password" name="password" placeholder="Password" required>
|
24 |
-
</div>
|
25 |
-
<button type="submit">Login</button>
|
26 |
-
</form>
|
27 |
-
<a href="#" class="forgot-link">Forgot Password?</a>
|
28 |
-
<div class="register-link">
|
29 |
-
<p>Don't have an account? <a href="/register">Register Now</a></p>
|
30 |
</div>
|
31 |
</div>
|
32 |
-
|
33 |
</body>
|
34 |
</html>
|
|
|
7 |
<link rel="stylesheet" href="/static/styles.css">
|
8 |
</head>
|
9 |
<body>
|
10 |
+
<div class="background">
|
11 |
+
<div class="login-container">
|
12 |
+
<div class="login-card">
|
13 |
+
<h1>Welcome Back</h1>
|
14 |
+
<p>Login to your Account</p>
|
15 |
+
<form action="/auth" method="POST">
|
16 |
+
<div class="input-group">
|
17 |
+
<input type="email" name="email" placeholder="User Name / Email" required>
|
18 |
+
</div>
|
19 |
+
<div class="input-group">
|
20 |
+
<input type="password" name="password" placeholder="Password" required>
|
21 |
+
</div>
|
22 |
+
<div class="actions">
|
23 |
+
<a href="#" class="forgot-link">Forgot Password?</a>
|
24 |
+
</div>
|
25 |
+
<button type="submit" class="btn-login">Login</button>
|
26 |
+
</form>
|
27 |
+
<div class="register-link">
|
28 |
+
<p>Don't have an account? <a href="/register">Register Now</a></p>
|
29 |
+
</div>
|
30 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
</div>
|
32 |
</div>
|
|
|
33 |
</body>
|
34 |
</html>
|