~cytrogen/srht-deploy

ref: 098f0ded66b5f614ec99f0d3efb89b3a5b1bc0f6 srht-deploy/meta-custom/templates/are-you-sure.html -rw-r--r-- 529 bytes
098f0ded — Cytrogen 初始提交:sourcehut Docker Compose 自托管部署 10 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "meta.html" %}
{% block content %}
<div class="row">
  <section class="col-md-12">
    <h3>确认操作</h3>
    <p>你确定要 {{ blurb | safe }} 吗?此操作无法撤销。</p>
    <form method="POST" action="{{ action }}">
      {{csrf_token()}}
      <button type="submit" class="btn btn-danger">
        确认 {{icon('caret-right')}}
      </button>
      <a
        href="{{ cancel }}"
        class="btn btn-default"
      >取消 {{icon('caret-right')}}</a>
    </form>
  </section>
</div>
{% endblock %}