Files
cmhub/apps/portal/templates/account/logout.html
T

14 lines
362 B
HTML
Raw Normal View History

2026-07-03 11:27:45 +08:00
{% extends "portal/base.html" %}
2026-07-08 17:05:20 +08:00
{% block title %}退出 - 虾皮圈{% endblock %}
2026-07-03 11:27:45 +08:00
{% block content %}
<section class="cmhub-panel">
<h1 class="h4 mb-3">退出登录</h1>
<form method="post" action="{% url 'portal-logout' %}">
{% csrf_token %}
<button class="btn btn-primary w-100" type="submit">退出</button>
</form>
</section>
{% endblock %}