{% extends "layout.html" %} {% block content %}
{{ form.hidden_tag() }}
Account Info {% if current_user.encryption_key %}

Your account is ready for using encryption in your alfred experiments.

{% else %}

Your account is not ready for using encryption in your alfred experiments. Please log out and log back in again to get ready!

{% endif %}
{{ form.username.label(class="form-control-label") }} {% if form.username.errors %} {{ form.username(class="form-control form-control-lg is-invalid") }}
{% for error in form.username.errors %} {{ error }} {% endfor %}
{% else %} {{ form.username(class="form-control form-control-lg") }} {% endif %}
{{ form.email.label(class="form-control-label") }} {% if form.email.errors %} {{ form.email(class="form-control form-control-lg is-invalid") }}
{% for error in form.email.errors %} {{ error }} {% endfor %}
{% else %} {{ form.email(class="form-control form-control-lg") }} {% endif %}
{{ form.submit(class="btn btn-outline-primary")}}
{% endblock content %}