33 lines
880 B
PHP
33 lines
880 B
PHP
|
<div class="page">
|
||
|
<h4><?= $this->t('user_reset') ?></h4>
|
||
|
<p><?= $this->t('user_reset_text') ?></p>
|
||
|
|
||
|
<?= $this->formTag(['action' => 'reset_password'], function(){ ?>
|
||
|
<table class="form">
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<th>
|
||
|
<label class="block" for="user_name"><?= $this->t('user_reset_name') ?></label>
|
||
|
</th>
|
||
|
<td>
|
||
|
<?=$this->textField("user", "name") ?>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th><label class="block" for="user_email"><?= $this->t('user_reset_email') ?></label></th>
|
||
|
<td><?=$this->textField("user", "email") ?></td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
<tfoot>
|
||
|
<tr>
|
||
|
<td colspan="2">
|
||
|
<?= $this->submitTag($this->t('user_resend_submit')) ?>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</tfoot>
|
||
|
</table>
|
||
|
<?php }) ?>
|
||
|
</div>
|
||
|
|
||
|
<?= $this->partial("footer") ?>
|