Add 'app/templates/signup.html'
This commit is contained in:
parent
c92291668f
commit
a4f90b0709
18
app/templates/signup.html
Normal file
18
app/templates/signup.html
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Signup</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Signup</h1>
|
||||||
|
<form method="POST" action="{{ url_for('signup') }}">
|
||||||
|
<label for="username">Username:</label>
|
||||||
|
<input type="text" name="username" required>
|
||||||
|
<br>
|
||||||
|
<label for="password">Password:</label>
|
||||||
|
<input type="password" name="password" required>
|
||||||
|
<br>
|
||||||
|
<button type="submit">Signup</button>
|
||||||
|
</form>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user