datatracker/ietf/templates/registration/create.html
Henrik Levkowetz 5d8306cfc8 Merged in [9733] from lars@netapp.com:
First round of HTML fixes identified by test-crawl --vnu.
 - Legacy-Id: 9764
Note: SVN reference [9733] has been migrated to Git commit 205df716f8bf4b7dae9e2637f3aa1ba048a158f9
2015-07-18 08:55:30 +00:00

56 lines
1.5 KiB
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load bootstrap3 %}
{% block title %}Account creation{% endblock %}
{% block content %}
{% origin %}
{% bootstrap_messages %}
{% if success %}
<h1>Account created successfully</h1>
<p>Your account creation request has been successfully received.</p>
<p>We have sent you an email with instructions on how to complete the process.</p>
{% else %}
<div class="row">
<div class="col-md-6">
<h1>Account creation</h1>
<p>Please enter your email address in order to create a new datatracker account.</p>
<form method="post">
{% csrf_token %}
{% bootstrap_form form %}
{% buttons %}
<button type="submit" class="btn btn-primary">Create account</button>
{% endbuttons %}
</form>
</div>
<div class="col-md-6">
<h1>Other options</h1>
<p>
<b>If you already have an account and want to use a new email address,</b>
please go to your account profile page and
</p>
<p>
<a class="btn btn-default" href="{% url "ietf.ietfauth.views.profile" %}"> Add a new email address</a>
</p>
<p>&nbsp;</p>
<p>
<b>If you already have an account but forgot your password,</b>
please simply
</p>
<p>
<a class="btn btn-warning" href="{% url "password_reset" %}">Reset your password</a>
</p>
</div>
</div>
{% endif %}
{% endblock %}