reset_2.html 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <center>
  2. <table class="login">
  3. <tr>
  4. <td>
  5. <table>
  6. <tr>
  7. <td style="padding: 22px 30px 0 42px; height: 280px; width: 170px;">
  8. <a href="/"><img border=0 src="/images/logo.svg" title="<?=_('Hestia Control Panel');?>" style="margin-top: 70px;" /></a>
  9. </td>
  10. <td style="padding: 40px 60px 0 0;" class="animated fadeIn">
  11. <form method="get" action="/reset/" >
  12. <table class="login-box">
  13. <tr>
  14. <td style="padding: 12px 0 0 2px;" class="login-welcome">
  15. <?php print _('Forgot Password');?>
  16. </td>
  17. </tr>
  18. <tr>
  19. <td style="padding: 12px 0 0 2px;">
  20. <?php print _('RESET_CODE_SENT');?>
  21. </td>
  22. </tr>
  23. <tr>
  24. <td style="padding: 12px 0 0 2px;" colspan=2><?php print _('Reset Code');?></td>
  25. </tr>
  26. <tr>
  27. <td>
  28. <input type="hidden" name="action" value="confirm">
  29. <input type="hidden" name="user" value="<?=htmlentities($_GET['user'], ENT_QUOTES|ENT_HTML5)?>">
  30. <input tabindex="1" type="text" size="20px" style="width:240px" name="code" class="vst-input">
  31. </td>
  32. </tr>
  33. <tr>
  34. <td style="padding: 20px 0 12px 0;">
  35. <input tabindex="2" type="submit" value="<?php print _('Confirm');?>" class="button">&nbsp;&nbsp;
  36. <input type="button" class="button cancel" value="<?php print _('Back');?>" onclick="location.href='/reset/'">
  37. </td>
  38. </tr>
  39. </table>
  40. </form>
  41. </td>
  42. </tr>
  43. <tr>
  44. <td colspan=2>
  45. <div class="login-bottom">
  46. <div style="height:20px"><?php if (isset($ERROR)) echo $ERROR ?></div>
  47. </div>
  48. </td>
  49. </tr>
  50. </table>
  51. </td>
  52. </tr>
  53. </table>
  54. </center>
  55. </body>
  56. </html>