Gregniuki commited on
Commit
7de903a
1 Parent(s): 8006da6

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 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>
 
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>