~cytrogen/srht-deploy

ref: 098f0ded66b5f614ec99f0d3efb89b3a5b1bc0f6 srht-deploy/meta-custom/templates/client-delete.html -rw-r--r-- 438 bytes
098f0ded — Cytrogen 初始提交:sourcehut Docker Compose 自托管部署 10 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "client-admin.html" %}
{% block content %}
<p>
  This will permenantely delete your OAuth client,
  <strong>{{ client.client_name }}</strong>, and revoke all OAuth tokens you
  have been issued.
</p>
<form method="POST">
  {{csrf_token()}}
  <button type="submit" class="btn btn-danger">
    Proceed and delete {{icon("caret-right")}}
  </button>
  <a href="/oauth" class="btn btn-default">Nevermind</a>
</form>
{% endblock %}