{% extends 'base.html' %} {% load i18n %} {% block title %}Create Account - RaktaPulse{% endblock %} {% block content %}

{% trans "Create Account" %}

{% trans "Join the next-gen management system" %}

{% csrf_token %} {% for field in form %}
{{ field }} {% if field.help_text %}
{{ field.help_text|safe }}
{% endif %} {% if field.errors %}
{% for error in field.errors %}{{ error }}{% endfor %}
{% endif %}
{% endfor %}

Already have an account? Log in here


Back to Home
{% endblock %}