Login
Home
{% if current_user.is_authenticated %}
Order
{% endif %} {% if not current_user.admin %}
About
{% endif %}
Resources
{% if current_user.is_authenticated %}
Update Information
Logout
{% endif %} {% if not current_user.is_authenticated %}
Login
{% endif %} {% if current_user.admin %}
Admin
{% endif %}
{% if message %}
{{ message | safe }}
{% endif %}
{{ form.username(class_ = 'form-control', placeholder = 'Username')}} {% for error in form.username.errors %}
{{error}} {% endfor %}
{{ form.password(class_ = 'form-control', placeholder = 'Password')}} {% for error in form.password.errors %}
{{error}} {% endfor %}
{{form.submitbtn}}
{{ form.csrf_token }}
Signup