You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
455 B
18 lines
455 B
<!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>
|
|
|