Files
classifieds/app/templates/auth/register.html
T
2026-06-15 11:23:05 -04:00

19 lines
622 B
HTML

{% extends "base.html" %}
{% from "auth/_macros.html" import field, turnstile_widget %}
{% block title %}{{ _('Register') }}{% endblock %}
{% block content %}
<div class="card narrow">
<h2>{{ _('Create account') }}</h2>
<form method="post" novalidate>
{{ form.hidden_tag() }}
{{ field(form.display_name) }}
{{ field(form.email) }}
{{ field(form.password) }}
{{ field(form.confirm) }}
{{ turnstile_widget(turnstile) }}
{{ form.submit(class="btn") }}
</form>
<p class="muted"><a href="{{ url_for('auth.login') }}">{{ _('Already have an account? Sign in') }}</a></p>
</div>
{% endblock %}