footer.php
5 years ago
header.php
3 years ago
loginAfterRestore.php
2 years ago
loginForm.php
2 years ago
header.php
175 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 › 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 | } |
| 45 | |
| 46 | .form-control { |
| 47 | width: 100%; |
| 48 | border: 1px solid #ced4da; |
| 49 | border-radius: .25rem; |
| 50 | padding: 0.75rem 1rem; |
| 51 | font-size: 14px; |
| 52 | } |
| 53 | |
| 54 | .form-control:focus { |
| 55 | outline: 0; |
| 56 | -webkit-box-shadow: 0 0 0 0.1rem rgba(221,221,221,.35); |
| 57 | box-shadow: 0 0 0 0.1rem rgba(221,221,221,.35); |
| 58 | } |
| 59 | |
| 60 | .form-group { |
| 61 | margin: 0 0 1em; |
| 62 | } |
| 63 | |
| 64 | .form-group label { |
| 65 | margin: 0 0 0.5em; |
| 66 | display: block; |
| 67 | } |
| 68 | |
| 69 | .login-remember input { |
| 70 | margin-top: 0; |
| 71 | vertical-align: middle; |
| 72 | } |
| 73 | |
| 74 | .btn { |
| 75 | background: #f7f7f7; |
| 76 | border: 1px solid #ccc; |
| 77 | color: #555; |
| 78 | display: inline-block; |
| 79 | text-decoration: none; |
| 80 | font-size: 14px; |
| 81 | margin: 0; |
| 82 | padding: 0.65rem 1.1rem; |
| 83 | cursor: pointer; |
| 84 | -webkit-border-radius: 3px; |
| 85 | -webkit-appearance: none; |
| 86 | border-radius: 3px; |
| 87 | white-space: nowrap; |
| 88 | vertical-align: top; |
| 89 | -webkit-transition: -webkit-box-shadow 0.2s ease; |
| 90 | transition: -webkit-box-shadow 0.2s ease; |
| 91 | -o-transition: box-shadow 0.2s ease; |
| 92 | transition: box-shadow 0.2s ease; |
| 93 | transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease; |
| 94 | } |
| 95 | |
| 96 | .btn:hover { |
| 97 | -webkit-box-shadow: 0 0 0 0.1rem rgba(221,221,221,.35); |
| 98 | box-shadow: 0 0 0 0.1rem rgba(221,221,221,.35); |
| 99 | } |
| 100 | |
| 101 | #error-page { |
| 102 | margin-top: 50px; |
| 103 | } |
| 104 | |
| 105 | #error-page p { |
| 106 | font-size: 14px; |
| 107 | line-height: 1.5; |
| 108 | margin: 25px 0 20px; |
| 109 | } |
| 110 | |
| 111 | #error-page code { |
| 112 | font-family: Consolas, Monaco, monospace; |
| 113 | } |
| 114 | |
| 115 | .error-msg { |
| 116 | -webkit-animation: slideIn 0.3s ease; |
| 117 | animation: slideIn 0.3s ease; |
| 118 | color: #ff4c4c; |
| 119 | } |
| 120 | |
| 121 | .password-lost{ |
| 122 | padding-top:20px; |
| 123 | } |
| 124 | |
| 125 | .wpstg-text-center { |
| 126 | text-align: center; |
| 127 | } |
| 128 | .wpstg-text-justify { |
| 129 | text-align: justify; |
| 130 | } |
| 131 | .wpstg-text-center img { |
| 132 | margin-top:30px; |
| 133 | } |
| 134 | .wpstg-alert { |
| 135 | padding: 16px; |
| 136 | border: 1px solid transparent; |
| 137 | margin-bottom: 8px; |
| 138 | } |
| 139 | .wpstg-alert > b { |
| 140 | margin-bottom: 8px; |
| 141 | } |
| 142 | .wpstg-alert > p { |
| 143 | margin: 0px; |
| 144 | } |
| 145 | .wpstg-alert.wpstg-alert-info { |
| 146 | color: #fff; |
| 147 | background: #185abc; |
| 148 | border-color: #185abc; |
| 149 | } |
| 150 | |
| 151 | @-webkit-keyframes slideIn { |
| 152 | 0% { |
| 153 | -webkit-transform: translateX(-100%); |
| 154 | transform: translateX(-100%); |
| 155 | } |
| 156 | 100% { |
| 157 | -webkit-transform: translateX(0); |
| 158 | transform: translateX(0); |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | @keyframes slideIn { |
| 163 | 0% { |
| 164 | -webkit-transform: translateX(-100%); |
| 165 | transform: translateX(-100%); |
| 166 | } |
| 167 | 100% { |
| 168 | -webkit-transform: translateX(0); |
| 169 | transform: translateX(0); |
| 170 | } |
| 171 | } |
| 172 | </style> |
| 173 | </head> |
| 174 | <body> |
| 175 |