Gregniuki commited on
Commit
78fa7e7
·
1 Parent(s): 828d76a

Update templates/register.html

Browse files
Files changed (1) hide show
  1. templates/register.html +15 -13
templates/register.html CHANGED
@@ -7,18 +7,20 @@
7
  </head>
8
  <body>
9
  <h1>Register</h1>
10
- <form action="/register" method="post" enctype="application/x-www-form-urlencoded">
11
- <!-- Your form fields here -->
12
- <label for="email">Email:</label>
13
- <input type="email" id="email" name="email" required><br><br>
14
-
15
- <label for="password">Password:</label>
16
- <input type="password" id="password" name="password" required><br><br>
17
-
18
- <label for="confirm_password">Confirm Password:</label>
19
- <input type="password" id="confirm_password" name="confirm_password" required><br><br>
20
-
21
- <input type="submit" value="Register">
22
- </form>
 
 
23
  </body>
24
  </html>
 
7
  </head>
8
  <body>
9
  <h1>Register</h1>
10
+ <form action="/register" method="post">
11
+ <label for="username">Username:</label>
12
+ <input type="text" id="username" name="username" required><br><br>
13
+
14
+ <label for="email">Email:</label>
15
+ <input type="email" id="email" name="email" required><br><br>
16
+
17
+ <label for="password">Password:</label>
18
+ <input type="password" id="password" name="password" required><br><br>
19
+
20
+ <label for="confirm_password">Confirm Password:</label>
21
+ <input type="password" id="confirm_password" name="confirm_password" required><br><br>
22
+
23
+ <input type="submit" value="Register">
24
+ </form>
25
  </body>
26
  </html>