{% extends 'default.html' %} {% set active_page = "mailbox" %} {% block title %} Mailboxes {% endblock %} {% block default_content %}

Mailboxes

{% if not current_user.is_premium() %} {% endif %} {% for mailbox in mailboxes %}
{{ mailbox.email }} {% if mailbox.verified %} {% else %} 🚫 {% endif %} {% if mailbox.id == current_user.default_mailbox_id %}
Default Mailbox
{% endif %}
Created {{ mailbox.created_at | dt }}
{{ mailbox.nb_alias() }} aliases.
Edit ➡
{% endfor %} {% if mailboxs|length > 0 %}
{% endif %}
{{ new_mailbox_form.csrf_token }}
Email
A verification email will be sent to this email to make sure you have access to this email.
{{ new_mailbox_form.email(class="form-control", placeholder="email@example.com") }} {{ render_field_errors(new_mailbox_form.email) }}
{% endblock %} {% block script %} {% endblock %}