{% extends "layouts/auth-default.html" %} {% block title %} Register {% endblock title %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
{% if msg %}

{{ msg | safe }}

{% else %}

Register

{% endif %}
{{ form.hidden_tag() }}
{{ form.name(placeholder="Friendly Name", class="form-control") }}
{{ form.username(placeholder="Username", class="form-control") }}
{{ form.email(placeholder="eMail Address", class="form-control") }}
{{ form.password(placeholder="Password", class="form-control", type="password") }}
    Already have and account? Login
{% endblock content %}