mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-05 23:08:48 +00:00
Information found here - https://simpleisbetterthancomplex.com/tutorial/2016/06/27/how-to-use-djangos-built-in-login-system.html
7 lines
169 B
HTML
7 lines
169 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h4>Logout</h4>
|
|
<p>You have been logged out</p>
|
|
<p>Click <a href="{% url 'login' %}">here</a> to log in</p>
|
|
{% endblock %} |