mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-19 09:12:30 +02:00
# One Thousandth Commit 🎉 🎈 🎆 🍾 * Allow requiring API ownership validation by SSO. Closes #163 * Add Discourse group name length restrictions. * Redirect after api addition/deletion of main character * Correct admin searching for removed discourse_username field in AuthServicesInfo * Correct admin function to sync user Discourse groups * Beautify tables by removing borders and hiding when empty. *Add buttons on dead-end pages to return to originating view.
22 lines
936 B
HTML
22 lines
936 B
HTML
{% extends 'public/base.html' %}
|
|
{% load staticfiles %}
|
|
{% block title %}Verify API Ownership{% endblock %}
|
|
{% block page_title%}Verify API Ownership{% endblock %}
|
|
{% block content %}
|
|
<div class="col-lg-12">
|
|
<h1 class="page-header text-center">Verify API Ownership</div>
|
|
<div class="col-xs-4 col-xs-offset-4">
|
|
<div class="panel panel-default>
|
|
<div class="panel-header">Please authenticate as a character on API {{ api.api_id }} to prove ownership.</div>
|
|
<div class="panel-body">
|
|
<div class="text-center">
|
|
<a href="{% url 'auth_api_sso' api.api_id %}">
|
|
<img class="img-responsive center-block" src="{% static 'img/sso/EVE_SSO_Login_Buttons_Large_Black.png' %}">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|