{% extends "base.html" %} {% load crispy_forms_tags %} {% load url %} {% block title %}Request Verification - {{ block.super }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Request Verification

Please use this form for verification of your account. The email address that you provide here will be only be used once to verify your identity, and will not be used for any further communications.

Before submitting this form, make sure that your profile information is complete and valid. You must provide your full name and the affiliation you indicate should match the email you use for verification below.

Your current profile information:

  • Name: {% if request.user.first_name and request.user.last_name %}{{ request.user.first_name }} {{ request.user.last_name }}{% else %}None{% endif %}
  • Institution: {% if request.user.user_profile.institution %} {{ request.user.user_profile.institution }} {% else %} None {% endif %}
  • Department: {% if request.user.user_profile.department %} {{ request.user.user_profile.department }} {% else %} None {% endif %}
  • Country: {% if request.user.user_profile.country.name %} {{ request.user.user_profile.country.name }} {% else %} None {% endif %}
  • If you would like to update this information, please edit your profile before making a verification request.

    {% crispy form %} {% endblock %}