Create an Account
{{ form.hidden_tag() }} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, msg in messages %}
{{ msg }}
{% endfor %} {% endif %} {% endwith %}
Username
{{ form.username(class="form-control", placeholder="Enter your username") }}
{% for error in form.username.errors %}
{{ error }}
{% endfor %}
Email
{{ form.email(class="form-control", placeholder="Enter your email") }}
{% for error in form.email.errors %}
{{ error }}
{% endfor %}
Password
{{ 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