{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Register" %}{% endblock %} {% block content %}

{% trans "Join thousands of businesses using ERICA to streamline operations and boost productivity." %}

  • {% trans "No credit card required" %}
  • {% trans "14 days free access" %}
  • {% trans "Full feature access" %}
  • {% trans "Dedicated support" %}

{% trans "Create Account" %}

{% trans "Join ERICA today" %}

{% csrf_token %} {% if messages %} {% for message in messages %} {% if 'error' in message.tags %}
{{ message }}
{% elif 'success' in message.tags %}
{{ message }}
{% else %}
{{ message }}
{% endif %} {% endfor %} {% endif %}
{% if form.email.errors %}

{{ form.email.errors.0 }}

{% endif %}
{% if form.password1.errors %}

{{ form.password1.errors.0 }}

{% endif %}
{% if form.password2.errors %}

{{ form.password2.errors.0 }}

{% endif %}
{% trans "or" %}
{% endblock %}