| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <center>
- <table class="login">
- <tr>
- <td>
- <table>
- <tr>
- <td style="padding: 0 10px 0 42px; height: 280px; width: 170px;">
- <a href="/"><img border=0 src="/images/logo.png" width="124px" height="46px" alt="Vesta Control Panel" /></a>
- </td>
- <td style="padding: 30px 0 0 0;">
- <form method="get" action="/reset/" >
- <table class="login-box">
- <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="<?php echo $_GET['user'];?>">
- <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" 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>
- <a class="vestacp" href="http://vestacp.com" >vestacp.com</a>
- </div>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </center>
- </body>
- </html>
|