You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
687 B
22 lines
687 B
{% extends "base.html" %}
|
|
|
|
{% block title %}分享链接无效{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="mx-auto max-w-2xl py-10">
|
|
<div class="card border-brand-200/60">
|
|
<div class="card-body space-y-4">
|
|
<h1 class="text-xl font-semibold text-brand-700">分享链接不可用</h1>
|
|
<p class="text-sm text-neutral-600 dark:text-neutral-300">
|
|
{% if reason == 'revoked' %}
|
|
该链接已被管理员撤销。
|
|
{% elif reason == 'expired' %}
|
|
该链接已过期。
|
|
{% else %}
|
|
未找到对应分享链接。
|
|
{% endif %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|
|
|