15 lines
483 B
HTML
15 lines
483 B
HTML
{% extends 'base.html' %}
|
|
{% import 'bootstrap/wtf.html' as wtf %}
|
|
|
|
{% block app_content %}
|
|
<h1>{{ _('Validation') }}</h1>
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
{{ wtf.quick_form(form) }}
|
|
</div>
|
|
</div>
|
|
<br>
|
|
<p>{{ _('New User?') }} <a href="{{ url_for('auth.register') }}">{{ _('Click to Register!') }}</a></p>
|
|
<p>{{ _('Returning User?') }} <a href="{{ url_for('auth.login') }}">{{ _('Click to Login!') }}</a></p>
|
|
{% endblock %}
|