{% extends "layouts/base.html" %} {% block title %} Register {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
Register
{% if msg %} {{ msg | safe }} {% else %} Add your credentials {% endif %}
{{ form.username(placeholder="Username", class="form-control") }}
{{ form.email(placeholder="Email", class="input form-control", type="email") }}
{{ form.password(placeholder="Password", class="form-control", type="password") }}
{% endblock content %} {% block javascripts %}{% endblock javascripts %}