Create login.HTML
Browse files- templates/login.HTML +20 -0
templates/login.HTML
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Login</title>
|
7 |
+
</head>
|
8 |
+
<body>
|
9 |
+
<h1>Login</h1>
|
10 |
+
<form action="/login" method="post">
|
11 |
+
<label for="email">Email:</label>
|
12 |
+
<input type="email" id="email" name="email" required><br><br>
|
13 |
+
|
14 |
+
<label for="password">Password:</label>
|
15 |
+
<input type="password" id="password" name="password" required><br><br>
|
16 |
+
|
17 |
+
<input type="submit" value="Login">
|
18 |
+
</form>
|
19 |
+
</body>
|
20 |
+
</html>
|