mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-19 01:02:30 +02:00
38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
{% extends "public/base.html" %}
|
|
|
|
{% block title %}Alliance Auth{% endblock %}
|
|
|
|
{% block page_title %}Register Page{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="row-fluid">
|
|
<div class="center-block" style="center">
|
|
<p>
|
|
{% if error %}
|
|
<div class="alert alert-danger" role="alert">Username Already Registered</div>
|
|
{% endif %}
|
|
<form action="{% url 'auth_register' %}" method="POST">
|
|
{% csrf_token %}
|
|
<h2 class="form-signin-heading">Register Account</h2>
|
|
<p>
|
|
Username:<br/>
|
|
{{form.username.errors}}
|
|
{{form.username}}<br/> Email:<br/>
|
|
{{form.email.errors}}
|
|
{{form.email}}<br/> Password:<br/>
|
|
{{form.password.errors}}
|
|
{{form.password}}<br/>Api ID: <br/>
|
|
{{form.api_id.errors}}
|
|
{{form.api_id}}<br/>Api Key: <br/>
|
|
{{form.api_key.errors}}
|
|
{{form.api_key}}<br/>
|
|
</p>
|
|
<input type="submit" value="submit" />
|
|
</form>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|