Files
TravianZ/templates/account/password.tpl
T
iopietro 62d6e19ee9 The first release of the refactored version
It's still a work in progress, there are a lot of things that will
change in the final release
2018-09-16 17:22:39 +02:00

28 lines
902 B
Smarty

<div id="content" class="activate">
<h1><img src="assets/img/x.gif" class="passwort" alt="{$smarty.const.NEW_PASSWORD}" /></h1>
<h5><img src="assets/img/x.gif" class="img_u22" alt="{$smarty.const.FORGOTTEN_PASSWORD}" /></h5>
{if $password == 'sent'}
<p>{$smarty.const.PASSWORD_SENT}</p>
{elseif $password == 'error'}
<p>
{$smarty.const.NEW_PASSWORD_ERROR}
</p>
{elseif $password == 'success'}
<p>
{$smarty.const.PASSWORD_SET_SUCCESS}
</p>
{else}
<p>{$smarty.const.NEW_PASSWORD_DESC}</p>
<form action="password.php" method="post">
<p>
<b>{$smarty.const.EMAIL}</b><br />
<input class="text" type="text" name="Email" value="{$Email}" maxlength="30" />
<span class="error">{$EmailError}</span>
</p>
<p>
<button value="generateNewPassword" name="action" class="trav_buttons" id="btn_ok"> OK </button>
</p>
</form>
{/if}
</div>