mirror of
https://github.com/simonw/datasette.git
synced 2026-06-06 00:56:57 +02:00
25 lines
504 B
HTML
25 lines
504 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Log out{% endblock %}
|
|
|
|
{% block nav %}
|
|
<p class="crumbs">
|
|
<a href="{{ base_url }}">home</a>
|
|
</p>
|
|
{{ super() }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>Log out</h1>
|
|
|
|
<p>You are logged in as <strong>{{ actor.id or actor }}</strong></p>
|
|
|
|
<form action="/-/logout" method="post">
|
|
<div>
|
|
<input type="hidden" name="csrftoken" value="{{ csrftoken() }}">
|
|
<input type="submit" value="Log out">
|
|
</div>
|
|
</form>
|
|
|
|
{% endblock %}
|