eesyphp/templates/must_login.tpl

16 lines
471 B
Smarty
Raw Permalink Normal View History

2023-02-25 05:02:27 +01:00
{extends file='Tpl:empty.tpl'}
{block name="pagetitle"}{/block}
{block name="content"}
<div class="p-5 mb-4 bg-light rounded-3">
<div class="container-fluid py-5">
<h1 class="display-5 fw-bold">{t domain=$CORE_TEXT_DOMAIN}Access denied{/t}</h1>
<p class="col-md-8 fs-4">
{t escape=off domain=$CORE_TEXT_DOMAIN}You must login to access this page.{/t}
</p>
</div>
2023-02-25 05:02:27 +01:00
</div>
{/block}
{*
# vim: autoindent expandtab tabstop=2 shiftwidth=2 softtabstop=2
*}