Register cover

Create an Account

{{ form.hidden_tag() }} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, msg in messages %} {% endfor %} {% endif %} {% endwith %}
{{ form.username(class="form-control", placeholder="Enter your username") }}
{% for error in form.username.errors %}
{{ error }}
{% endfor %}
{{ form.email(class="form-control", placeholder="Enter your email") }}
{% for error in form.email.errors %}
{{ error }}
{% endfor %}
{{ form.password(class="form-control", id="password", placeholder="Enter your password") }}
{% for error in form.password.errors %}
{{ error }}
{% endfor %}
{{ form.submit(class="btn btn-primary w-100 py-2 fw-bold") }}

Already have an account? Login