mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-19 01:02:30 +02:00
27 lines
928 B
HTML
27 lines
928 B
HTML
{% extends "public/base.html" %}
|
|
|
|
{% block title %}Alliance Auth{% endblock %}
|
|
|
|
{% block page_title %}Login 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/Password Invalid</div>
|
|
{% endif %}
|
|
<form class="form-signin" role="form" action="{% url 'auth_login_user' %}" method="POST">
|
|
{% csrf_token %}
|
|
<h2 class="form-signin-heading">Please sign in</h2>
|
|
{{form.as_p}}
|
|
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button>
|
|
</form>
|
|
<p><a href="{% url 'auth_register' %}">Register Here</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|