reset_2.html 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <html>
  2. <head>
  3. <link rel="icon" href="/images/favicon.ico" type="image/x-icon">
  4. <title> Vesta - Reset Password </title>
  5. <style type="text/css">
  6. body {
  7. padding: 0;
  8. margin: 0;
  9. margin-left: auto;
  10. margin-right: auto;
  11. background-image: url(/images/b.png);
  12. font-family: Arial, sans-serif;
  13. }
  14. .forgot {
  15. color: #484243;
  16. font-family: Arial, sans-serif;
  17. font-size: 8pt;
  18. padding: 0 10px 0 0;
  19. }
  20. .forgot:hover {
  21. color: #7fa1cb;
  22. }
  23. .login {
  24. margin: 80px 0 80px 0;
  25. padding: 0;
  26. border-top: 1px solid #cccccc;
  27. border-left: 1px solid #cccccc;
  28. border-right: 1px solid #cccccc;
  29. background: #ebe9dc;
  30. text-align: left;
  31. vertical-align:top;
  32. width: 500px;
  33. box-shadow: 0 0 2px 2px #d7d7d7;
  34. }
  35. .login-box {
  36. text-align: left;
  37. vertical-align:top;
  38. padding: 0 0 10px 40px;
  39. color: #333;
  40. }
  41. .login-text1 {
  42. padding: 10px 0 0 2px;
  43. color: #433832;
  44. font-family: Arial, sans-serif;
  45. font-size: 12pt;
  46. }
  47. .login-text1 a {
  48. padding: 0 6px;
  49. font-family: Arial, sans-serif;
  50. font-size: 10pt;
  51. text-shadow: none;
  52. }
  53. .login-text2 {
  54. padding: 12px 0 10px 0;
  55. color: #484243;
  56. }
  57. .login-bottom {
  58. color: #574F51;
  59. text-align: right;
  60. width: 500px;
  61. height: 50px;
  62. background: #484243;
  63. padding: 0 8px 0 0;
  64. margin: 0;
  65. }
  66. .vestacp{
  67. font-size: 8pt;
  68. color: #CCCCB4;
  69. text-align: right;
  70. padding: 20px 0 0 0;
  71. }
  72. .error {
  73. font-size: 10pt;
  74. color: #DE6C5D;
  75. }
  76. .login-input {
  77. color: #555;
  78. background-color: #FFFFFF;
  79. border: 1px solid #999999;
  80. border-radius: 3px 3px 3px 3px;
  81. color: #555555;
  82. font-family: Arial,sans-serif;
  83. font-size: 14pt;
  84. padding: 4px;
  85. width: 360px;
  86. height: 36px;
  87. }
  88. .login-input:hover {
  89. border: 1px solid #e5a907;
  90. }
  91. .login-button {
  92. filter:chroma(color=#000000);
  93. padding: 4px;
  94. margin: 0 6px 0 0;
  95. cursor: pointer;
  96. color: #333333;
  97. background-color: #f6f6f6;
  98. border: 1px solid #ACACAC;
  99. border-radius: 3px 3px 3px 3px;
  100. font-size: 12px;
  101. padding: 3px 16px;
  102. width: 105px;
  103. }
  104. .login-button:hover {
  105. background-color: #f0f0f0;
  106. }
  107. .login-button:active {
  108. background-color: #EBE9DC;
  109. }
  110. </style>
  111. </head>
  112. <body>
  113. <center>
  114. <table class="login">
  115. <tr>
  116. <td>
  117. <table>
  118. <tr>
  119. <td style="padding: 0 10px 0 42px;">
  120. <a href="/"><img border=0 src="/images/logo.png" width="124px" height="46px" alt="Vesta Control Panel" /></a>
  121. </td>
  122. <td style="padding: 30px 0 0 0;">
  123. <form method="get" action="/reset/" >
  124. <table class="login-box">
  125. <tr>
  126. <td style="padding: 6px 0 4px 0;">
  127. Reset code has been sent to your email address.
  128. Please copy and paste that code in the verification box below.
  129. </td>
  130. </tr>
  131. <tr>
  132. <td><p class="login-text1">Reset Code</p></td>
  133. </tr>
  134. <tr>
  135. <td>
  136. <input type="hidden" name="action" value="confirm">
  137. <input type="hidden" name="user" value="<?php echo $_GET['user'];?>">
  138. <input tabindex="1" type="text" size="20px" style="width:200px" name="code" class="login-input">
  139. </td>
  140. </tr>
  141. <tr>
  142. <td style="padding: 20px 0 0 0;">
  143. <input tabindex="2" type="submit" value="Confirm" class="login-button">
  144. </td>
  145. </tr>
  146. </table>
  147. </form>
  148. </td>
  149. </tr>
  150. <tr>
  151. <td colspan=2>
  152. <table class="login-bottom">
  153. <tr><td>.<?php if (isset($ERROR)) echo $ERROR ?></td></tr>
  154. <tr><td><a tabindex="6" class="vestacp" href="http://vestacp.com" >vestacp.com</a></td></tr>
  155. </table>
  156. </td>
  157. </tr>
  158. </table>
  159. </td>
  160. </tr>
  161. </table>
  162. </center>
  163. </body>
  164. </html>