14 lines
362 B
HTML
14 lines
362 B
HTML
{% extends "portal/base.html" %}
|
|
|
|
{% block title %}退出 - 虾皮圈{% endblock %}
|
|
|
|
{% 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 %}
|