add registration form

This commit is contained in:
TuxCoder 2020-05-27 21:16:14 +02:00
parent 4150853588
commit daab0f063d
5 changed files with 44 additions and 3 deletions

View file

@ -7,5 +7,7 @@
{{ render_form(form) }}
<a href="{{ url_for('.sign_up') }}" class="btn btn-primary">Sign Up</a>
{% endblock %}

View file

@ -0,0 +1,11 @@
{% extends 'auth/base.html.j2' %}
{% block title %}{{ gettext('Sign Up') }}{% endblock %}
{% block content %}
{{ render_form(form) }}
{% endblock %}