{% extends "layouts/auth.html" %} {% block title %}{{_("Passphrase")}} | {{_('Setup')}}{% endblock %} {% block content %}
{# Password chosen, hooray! #}

{{_("Mailpile Secured!")}}

{{_("Access to your Mailpile will now require this password.")}}

{{_("All settings and downloaded mail will be encrypted, so even if someone steals your laptop they will not have access to your e-mail.")}}

{{_("Start using Mailpile")}}

{# Input form for choosing a password #}
{% if result.need_password %} {{ csrf_field|safe }}

{{_("Change your password")}}

{% else %}

{{_("Choose a password")}}

{{_("Your password should be something really hard to guess but memorable.")}}
{{_("This password will be used to unlock your Mailpile.")}}

{% endif %}

{{_("We have made a secure recommendation, but you still need to type it yourself!")}}

{{_("The passwords don't match!")}}

{{_("That password is too short. This is important!")}}

{{_("That password is a bit short!")}}
{{_("We recommend using a phrase of at least four memorable words.")}}

{% set suggestion = mailpile('setup/mkpass').result.passphrase %} {% if result.need_password %}       {{_("Cancel")}} {% else %}       {{_("Suggest")}} {% endif %}
{% endblock %}