Update templates/register.html
Browse files- templates/register.html +2 -1
templates/register.html
CHANGED
@@ -7,7 +7,8 @@
|
|
7 |
</head>
|
8 |
<body>
|
9 |
<h1>Register</h1>
|
10 |
-
<form action="/register" method="post">
|
|
|
11 |
<label for="email">Email:</label>
|
12 |
<input type="email" id="email" name="email" required><br><br>
|
13 |
|
|
|
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 |
|