PluginProbe ʕ •ᴥ•ʔ
WP STAGING – WordPress Backup, Restore, Migration & Clone / 4.9.2
WP STAGING – WordPress Backup, Restore, Migration & Clone v4.9.2
4.9.2 4.9.1 4.9.0 4.8.1 trunk 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.10.0 3.2.0 3.3.1 3.3.2 3.3.3 3.4.1 3.4.3 3.5.0 3.6.0 3.7.1 3.8.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 3.9.0 3.9.1 3.9.2 3.9.3 3.9.4 4.0.0 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.2.0 4.2.1 4.3.0 4.3.1 4.3.2 4.4.0 4.5.0 4.6.0 4.7.0 4.7.1 4.7.2 4.7.3 4.8.0
wp-staging / views / frontend / header.php
wp-staging / views / frontend Last commit date
footer.php 1 year ago header.php 4 months ago loginAfterRestore.php 1 year ago loginForm.php 1 day ago wordfence-2fa.php 1 year ago
header.php
207 lines
1 <?php
2
3 /**
4 * @see \WPStaging\Frontend\LoginForm::getHeader()
5 */
6
7 ?>
8 <!DOCTYPE html>
9 <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
10 <head>
11 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
12 <meta name="viewport" content="width=device-width">
13 <meta name='robots' content='noindex,follow' />
14 <title>WordPress &rsaquo; You need to login to access that page</title>
15 <style>
16 * {
17 -webkit-box-sizing: border-box;
18 box-sizing: border-box;
19 }
20
21 html {
22 background: #f1f1f1;
23 }
24
25 body {
26 color: #444;
27 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
28 margin: 0;
29 }
30
31 .wp-staging-login {
32 padding: 1rem;
33 }
34
35 .wp-staging-form {
36 -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
37 box-shadow: 0 1px 3px rgba(0,0,0,0.13);
38 max-width: 500px;
39 width: 100%;
40 margin: 3rem auto;
41 background: #fff;
42 padding: 1rem;
43 overflow: hidden;
44 p.error-msg {
45 line-height: 1.5em;
46 a{
47 color: #ff4c4c;
48 font-weight: bold;
49 }
50 }
51 }
52
53 .form-control {
54 width: 100%;
55 border: 1px solid #ced4da;
56 border-radius: .25rem;
57 padding: 0.75rem 1rem;
58 font-size: 14px;
59 }
60
61 .form-control:focus {
62 outline: 0;
63 -webkit-box-shadow: 0 0 0 0.1rem rgba(221,221,221,.35);
64 box-shadow: 0 0 0 0.1rem rgba(221,221,221,.35);
65 }
66
67 .form-group {
68 margin: 0 0 1em;
69 }
70
71 .form-group label {
72 margin: 0 0 0.5em;
73 display: block;
74 }
75
76 .login-remember input {
77 margin-top: 0;
78 vertical-align: middle;
79 }
80
81 .btn {
82 background: #f7f7f7;
83 border: 1px solid #ccc;
84 color: #555;
85 display: inline-block;
86 text-decoration: none;
87 font-size: 14px;
88 margin: 0;
89 padding: 0.65rem 1.1rem;
90 cursor: pointer;
91 -webkit-border-radius: 3px;
92 -webkit-appearance: none;
93 border-radius: 3px;
94 white-space: nowrap;
95 vertical-align: top;
96 -webkit-transition: -webkit-box-shadow 0.2s ease;
97 transition: -webkit-box-shadow 0.2s ease;
98 -o-transition: box-shadow 0.2s ease;
99 transition: box-shadow 0.2s ease;
100 transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
101 }
102
103 .btn:hover {
104 -webkit-box-shadow: 0 0 0 0.1rem rgba(221,221,221,.35);
105 box-shadow: 0 0 0 0.1rem rgba(221,221,221,.35);
106 }
107
108 #error-page {
109 margin-top: 50px;
110 }
111
112 #error-page p {
113 font-size: 14px;
114 line-height: 1.5;
115 margin: 25px 0 20px;
116 }
117
118 #error-page code {
119 font-family: Consolas, Monaco, monospace;
120 }
121
122 .error-msg {
123 -webkit-animation: slideIn 0.3s ease;
124 animation: slideIn 0.3s ease;
125 color: #ff4c4c;
126 }
127
128 .password-lost{
129 padding-top:20px;
130 }
131
132 .wpstg-u-text-center {
133 text-align: center;
134 }
135
136 .wpstg-u-text-justify {
137 text-align: justify;
138 }
139
140 .wpstg-u-text-center img {
141 margin-top:30px;
142 }
143
144 .wpstg-alert {
145 padding: 16px;
146 border: 1px solid transparent;
147 margin-bottom: 8px;
148 }
149
150 .wpstg-alert > b {
151 margin-bottom: 8px;
152 }
153
154 .wpstg-alert > p {
155 margin: 0;
156 line-height: 1.3;
157 }
158
159 .wpstg-alert.wpstg-alert-info {
160 color: #fff;
161 background: #185abc;
162 border-color: #185abc;
163 }
164
165 .wpstg-upsell-link {
166 background: #f5f5f5;
167 padding: 15px 15px;
168 margin: 16px 0 0 0;
169 font-size: 14px;
170 font-weight: bold;
171 }
172
173 .wpstg-upsell-link a {
174 color: #a700d0;
175 text-decoration: none;
176 font-weight: bold;
177 }
178
179 .wpstg-upsell-link a:hover {
180 text-decoration: underline;
181 }
182
183 @-webkit-keyframes slideIn {
184 0% {
185 -webkit-transform: translateX(-100%);
186 transform: translateX(-100%);
187 }
188 100% {
189 -webkit-transform: translateX(0);
190 transform: translateX(0);
191 }
192 }
193
194 @keyframes slideIn {
195 0% {
196 -webkit-transform: translateX(-100%);
197 transform: translateX(-100%);
198 }
199 100% {
200 -webkit-transform: translateX(0);
201 transform: translateX(0);
202 }
203 }
204 </style>
205 </head>
206 <body>
207