{% extends 'base.html' %} {% block header %}

Sign Up

Please sign up to access your user space! By creating a user you will be able to have access to all the compounds you have ever searched in our database. Don't miss out!

{% endblock %} {% block content %}
{{ form.hidden_tag() }}

User information

Email address

{{ form.email(class_="form-control") }} {% set emailerror = form.errors.get('email') %} {% if emailerror %}
{{ emailerror[0] }}
{% endif %}

Password

{{ form.password(class_="form-control") }}

Confirm Password

{{ form.confirm_password(class_="form-control") }} {% set passworderror = form.errors.get('password') %} {% if passworderror %}
{{ passworderror[0] }}
{% endif %}

Personal information

Name

{{ form.name(class_="form-control") }}

Surname

{{ form.surname(class_="form-control") }}

Institution

{{ form.institution(class_="form-control") }}
{{ form.submit(class_="btn btn-lg btn-primary") }}
{% endblock %}