{% extends "single.html" %} {% block title %}Register{% endblock %} {% block single_content %}
{{ form.csrf_token }}

Create new account

{{ form.email(class="form-control", type="email", placeholder="username@proton.me") }}
Emails sent to your alias will be forwarded to this email address.
It can't be a disposable or forwarding email address.
We recommend using a Proton Mail address
{{ render_field_errors(form.email) }}
{{ form.password(class="form-control", type="password") }} {{ render_field_errors(form.password) }}
{% if HCAPTCHA_SITEKEY %}
{% endif %} By clicking Create Account, you agree to abide by SimpleLogin's Terms and Conditions.
{% if connect_with_proton %}
or
Sign up with Proton {% endif %} {% if connect_with_oidc %}
or
Sign up with SSO {% endif %}
Already have account? Sign in
{% endblock %}