{% extends "layouts/auth.html" %} {% block title %}Create account — IILMP{% endblock %} {% block auth_card_width %}max-w-xl{% endblock %} {% block content %}

Create your account

Join the IILMP platform — apply for grants, track research, and access learning across RUFORUM.

{% csrf_token %} {% if form.non_field_errors %} {% endif %}
{% for field in form %} {% if field.name == "role" %} {# WS5.1 / FRREP-UR008 — render role as branded card-style radios. #}
I am joining as
{% for choice in field %} {% endfor %}
{% if field.errors %} {% for e in field.errors %}

{{ e }}

{% endfor %} {% endif %}
{% elif field.name == "non_partner_institution" %}
{{ field }}

Type your institution's name if it isn't in the list above. Your account will be marked for staff review before full access is granted.

{% if field.errors %} {% for e in field.errors %}

{{ e }}

{% endfor %} {% endif %}
{% else %} {% include "components/forms/field.html" with field=field %} {% endif %} {% endfor %}

Already have an account? Sign in

{% endblock %} {% block extra_js %} {% include "components/select2_auto_init.html" %} {% endblock %}