hobo/hobo/franceconnect/templates/hobo/franceconnect_disable.html

21 lines
465 B
HTML

{% extends "hobo/franceconnect_home.html" %}
{% load i18n %}
{% block appbar %}
<h2>FranceConnect</h2>
{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
<p>
{% trans "Are you sure you want to disable FranceConnect support?" %}
{{ form.as_p }}
<div class="buttons">
<button class="submit-button">{% trans "Disable" %}</button>
<a class="cancel" href="{% url 'franceconnect-home' %}">{% trans "Cancel" %}</a>
</div>
</form>
{% endblock %}