Spaces:
Sleeping
Sleeping
Update templates/signup.html
Browse files- templates/signup.html +4 -4
templates/signup.html
CHANGED
|
@@ -2,10 +2,10 @@
|
|
| 2 |
{% block content %}
|
| 3 |
<div class="container">
|
| 4 |
<h2>Create Account</h2>
|
| 5 |
-
<form method="POST"
|
| 6 |
-
<input type="text" name="username"
|
| 7 |
-
<input type="password" name="password"
|
| 8 |
-
<input type="password" name="confirmPassword"
|
| 9 |
<button type="submit">Sign Up</button>
|
| 10 |
</form>
|
| 11 |
<p id="signupMessage"></p>
|
|
|
|
| 2 |
{% block content %}
|
| 3 |
<div class="container">
|
| 4 |
<h2>Create Account</h2>
|
| 5 |
+
<form method="POST" action="{{ url_for('signup') }}">
|
| 6 |
+
<input type="text" name="username" placeholder="Username" required />
|
| 7 |
+
<input type="password" name="password" placeholder="Password" required />
|
| 8 |
+
<input type="password" name="confirmPassword" placeholder="Confirm Password" required />
|
| 9 |
<button type="submit">Sign Up</button>
|
| 10 |
</form>
|
| 11 |
<p id="signupMessage"></p>
|