{% 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.hidden_tag() }}

{{ form.username.data }}

{% trans service_name %}Your new {{ service_name }} profile{% endtrans %}
{% 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 %}