26 lines
938 B
HTML
26 lines
938 B
HTML
{% extends "account/base.html" %}
|
|
{% comment %}
|
|
This file is part of photo21
|
|
Copyright (C) 2022 Amicale des élèves de l'ENS Paris-Saclay
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
{% endcomment %}
|
|
{% load i18n %}
|
|
{% block head_title %}{% trans "Sign Out" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="card mx-auto">
|
|
<h3 class="card-header text-center">
|
|
{% trans "Sign Out" %}
|
|
</h3>
|
|
<div class="card-body">
|
|
<p>{% trans 'Are you sure you want to sign out?' %}</p>
|
|
<form method="post" action="{% url 'account_logout' %}">
|
|
{% csrf_token %}
|
|
{% if redirect_field_value %}
|
|
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}"/>
|
|
{% endif %}
|
|
<button type="submit" class="btn btn-primary">{% trans 'Sign Out' %}</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|