Rename templates/login2.html to templates/login.html
Browse files
templates/{login2.html → login.html}
RENAMED
@@ -7,14 +7,10 @@
|
|
7 |
</head>
|
8 |
<body>
|
9 |
<h1>Login</h1>
|
10 |
-
<form
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
<input type="password" id="password" name="password" required><br><br>
|
16 |
-
|
17 |
-
<input type="submit" value="Login">
|
18 |
-
</form>
|
19 |
</body>
|
20 |
</html>
|
|
|
7 |
</head>
|
8 |
<body>
|
9 |
<h1>Login</h1>
|
10 |
+
<form method="post" action="/login">
|
11 |
+
<input type="text" name="username" placeholder="Email">
|
12 |
+
<input type="password" name="password" placeholder="Password">
|
13 |
+
<button type="submit">Login</button>
|
14 |
+
</form>
|
|
|
|
|
|
|
|
|
15 |
</body>
|
16 |
</html>
|