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