{# SPDX-FileCopyrightText: 2025-2026 JWP Consulting GK #} {# SPDX-License-Identifier: AGPL-3.0-or-later #} {% extends "user_base.html" %} {% load i18n %} {% load static %} {% load socialaccount %} {% load projectify %} {% block title %} {% translate "Sign up - Projectify" %} {% endblock title %} {% block user_content %}
{% csrf_token %}

{% trans "Sign up" %}

{% trans "Sign up and start a free trial" %}

{{ form.email.as_field_group }}
{{ form.password.as_field_group }}
{% trans "Rules for choosing a safe password:" %}
    {% for rule in validators %}
  • {{ rule }}
  • {% endfor %}
{% include "projectify/forms/submit.html" with text=_("Sign up") %}
{% include "user/_oauth_buttons.html" %}
{% trans "Already have an account?" %} {% anchor "users:log-in" _("Log in here") %}
{% endblock user_content %}