mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-18 00:40:16 +02:00
25 lines
774 B
HTML
25 lines
774 B
HTML
{% extends "public/base.html" %}
|
|
{% load bootstrap %}
|
|
{% block title %}Alliance Auth{% endblock %}
|
|
|
|
{% block page_title %}Login Page{% endblock page_title %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-md-4"></div>
|
|
<div class="col-md-4">
|
|
{% 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|bootstrap}}
|
|
<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>
|
|
|
|
{% endblock content %}
|