{% extends "base.html" %} {% set service_name = service.name %} {% set username = form.username.data %} {% block title %} {% trans %}Sign up{% endtrans %} {% endblock %} {% block subtitle %} {% trans service_name %}for the service {{ service_name }}{% endtrans %} {% endblock %} {% block content %}

{{ form.username.data }}

{% trans service_name %}Your new {{ service_name }} profile{% endtrans %}

{% trans service_name %}Please click the "Sign up" button to initialize your {{ service_name }} account.{% endtrans %}

{% if not service.single_profile %}

{% trans %}If you wish to pick a different username, please click the "Create a custom profile" button.{% endtrans %}

{% endif %}
{{ form.hidden_tag() }}
{% endblock %} {% block actions %} {% if service.policy not in ("locked",) %} {% trans %}Claim a profile{% endtrans %} {% endif %} {% if not service.single_profile %} {% trans %}Create a custom profile{% endtrans %} {% endif %} {% endblock %}