first commit

This commit is contained in:
2025-08-02 16:30:27 +02:00
commit 23646bfcee
14851 changed files with 1750626 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{extends "index.tpl"}
{block "content"}
<div class="page-newsletter">
<h1>{t}Odhlášení ze zasílání novinek{/t}</h1>
<div class="page-content">
{block "user-messages"}
{include "block.messages.tpl"}
{/block}
{if $body.unsubscribed}
<p>
<strong>{t adresa=$body.unsubscribed}E-mailová adresa {adresa} byla odhlášena ze zasílání novinek.{/t}</strong>
</p>
{else}
<form name="login" method="post" action="{$ctrl.currUrl.Abs}">
<div class="form-group">
<input class="input form-control" type="email" id="email" name="email" value="{$body.inputLogin}"
maxlength="70" required placeholder="{t}Zadejte Váš e-mail{/t}">
<input class="btn btn-primary" type="submit" name="Submit" value="{t}Odhlásit{/t}">
</div>
</form>
{/if}
</div>
</div>
{/block}