login.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <center>
  2. <table class="login animated zoomIn">
  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;">
  11. <form method="post" action="/login/" id="form_login">
  12. <input type="hidden" name="token" value="<?php echo $_SESSION['token']; ?>">
  13. <input type="hidden" name="murmur" value="" id="murmur">
  14. <table class="login-box">
  15. <tr>
  16. <td style="padding: 12px 0 0 2px;" class="login-welcome">
  17. <?php print _('Welcome to Hestia Control Panel');?>
  18. </td>
  19. </tr>
  20. <tr>
  21. <td style="padding: 12px 0 5px 2px;">
  22. <?php print _('Username');?>
  23. </td>
  24. </tr>
  25. <tr>
  26. <td>
  27. <input tabindex="1" type="text" size="20px" style="width:240px;" name="user" class="vst-input" autofocus />
  28. </td>
  29. </tr>
  30. <tr>
  31. <td height="10px">
  32. </td>
  33. </tr>
  34. <tr>
  35. <td style="padding: 0 0 5px 0;">
  36. <button tabindex="3" type="submit" class="button"><?php print _('Next');?>&nbsp;&nbsp;&nbsp;<i class="fas fa-sign-in-alt"></i></button>
  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. </tr>
  52. </table>
  53. </center>
  54. <script src="/inc/jquery/jquery-3.5.1.min.js"></script>
  55. </body>
  56. </html>