~cytrogen/srht-deploy

ref: 6b7b1351f3bd75526788ceec9164562787bd89ae srht-deploy/meta-custom/templates/client-delete.html -rw-r--r-- 438 bytes
6b7b1351 — Cytrogen 修复 README 里的 Markdown 格式错误 9 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 %}