28 lines
1008 B
Smarty
28 lines
1008 B
Smarty
{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}
|