mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-19 01:02:30 +02:00
13 lines
419 B
HTML
13 lines
419 B
HTML
{% extends 'public/middle_box.html' %}
|
|
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block page_title %}{% translate "Login" %}{% endblock %}
|
|
|
|
{% block middle_box_content %}
|
|
<a href="{% url 'auth_sso_login' %}{% if request.GET.next %}?next={{request.GET.next}}{%endif%}">
|
|
<img class="img-responsive center-block" src="{% static 'img/sso/EVE_SSO_Login_Buttons_Large_Black.png' %}" border=0>
|
|
</a>
|
|
{% endblock %}
|