mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-09 16:58:49 +00:00
26 lines
761 B
HTML
26 lines
761 B
HTML
{% extends "account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% trans "Sign Out" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{% trans "Sign Out" %}</h1>
|
|
|
|
<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 %}
|
|
<hr>
|
|
<div class='btn-group float-right' role='group'>
|
|
<a type='button' class='btn btn-secondary' href='{% url "index" %}'><span class='fas fa-undo-alt'></span> {% trans "Back to Site" %}</a>
|
|
<button type="submit" class="btn btn-danger btn-block">{% trans 'Sign Out' %}</button>
|
|
</div>
|
|
</form>
|
|
|
|
|
|
{% endblock %}
|