| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <center>
- <table class="login">
- <tr>
- <td>
- <table>
- <tr>
- <td style="padding: 22px 30px 0 42px; height: 280px; width: 170px;">
- <a href="/"><img border=0 src="/images/logo.svg" title="<?=_('Hestia Control Panel');?>" style="margin-top: 70px;" /></a>
- </td>
- <td style="padding: 40px 60px 0 0;" class="animated fadeIn">
- <form method="get" action="/reset/" >
- <table class="login-box">
- <tr>
- <td style="padding: 12px 0 0 2px;" class="login-welcome">
- <?php print _('Forgot Password');?>
- </td>
- </tr>
- <tr>
- <td style="padding: 12px 0 0 2px;">
- <?php print _('RESET_CODE_SENT');?>
- </td>
- </tr>
- <tr>
- <td style="padding: 12px 0 0 2px;" colspan=2><?php print _('Reset Code');?></td>
- </tr>
- <tr>
- <td>
- <input type="hidden" name="action" value="confirm">
- <input type="hidden" name="user" value="<?=htmlentities($_GET['user'], ENT_QUOTES|ENT_HTML5)?>">
- <input tabindex="1" type="text" size="20px" style="width:240px" name="code" class="vst-input">
- </td>
- </tr>
- <tr>
- <td style="padding: 20px 0 12px 0;">
- <input tabindex="2" type="submit" value="<?php print _('Confirm');?>" class="button">
- <input type="button" class="button cancel" value="<?php print _('Back');?>" onclick="location.href='/reset/'">
- </td>
- </tr>
- </table>
- </form>
- </td>
- </tr>
- <tr>
- <td colspan=2>
- <div class="login-bottom">
- <div style="height:20px"><?php if (isset($ERROR)) echo $ERROR ?></div>
- </div>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </center>
- </body>
- </html>
|