10 lines
266 B
HTML
10 lines
266 B
HTML
<h1>Register</h1>
|
|
|
|
<form method="POST">
|
|
<input name="username" placeholder="Username" required />
|
|
<input name="password" type="password" required />
|
|
<button type="submit">Create Account</button>
|
|
</form>
|
|
|
|
<a href="{{ url_for('auth.login') }}">Back to Login</a>
|