authentic/src/authentic2_idp_openid/templates/django_openid_provider/manage_id_confirm.html

20 lines
621 B
HTML

{% extends "authentic2/base-page.html" %}
{% load i18n %}
{% block title %}
{% trans "Manage OpenID" %}
{% endblock %}
{% block content %}
<form action = "/openid/manageid_confirm/" id = "form" method = "post">
{% csrf_token %}
<p>Are you sure, you want to delete <strong> {{ id }} </strong> and these trusted site:</p>
{% for i in trust %}
{{ i }}
{% endfor %}
<input type = "hidden" name = "idremove" value = {{ id }}>
<input type = "submit" value = "Yes" name = "Answer" />
<input type = "submit" value = "No" name = "Answer" />
</form>
{% endblock %}