13 lines
488 B
HTML
13 lines
488 B
HTML
{% extends "base_public.html" %} {% block title %}Register{% endblock %} {%
|
|
block content %}
|
|
<section class="public-card">
|
|
<h1>Register</h1>
|
|
<form method="POST" class="auth-form">
|
|
<input name="username" placeholder="Username" required />
|
|
<input name="password" type="password" placeholder="Password" required />
|
|
<button type="submit" class="link-button">Create Account</button>
|
|
</form>
|
|
<a href="{{ url_for('auth.login') }}">Back to Login</a>
|
|
</section>
|
|
{% endblock %}
|