|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | + <!-- This page is displayed when someone clicks a valid 'reset password' link. |
| 4 | + Users should feel free to add to this page (i.e. branding or security widgets) |
| 5 | + but should be sure not to delete any of the form inputs or the javascript from the |
| 6 | + template file. This javascript is what adds the necessary values to authenticate |
| 7 | + this session with Parse. |
| 8 | + The query params 'username' and 'app' hold the friendly names for your current user and |
| 9 | + your app. You should feel free to incorporate their values to make the page more personal. |
| 10 | + If you are missing form parameters in your POST, Parse will navigate back to this page and |
| 11 | + add an 'error' query parameter. |
| 12 | + --> |
| 13 | + <head> |
| 14 | + <title>Password Reset</title> |
| 15 | + <style type='text/css'> |
| 16 | + h1 { |
| 17 | + display: block; |
| 18 | + font: inherit; |
| 19 | + font-size: 30px; |
| 20 | + font-weight: 600; |
| 21 | + height: 30px; |
| 22 | + line-height: 30px; |
| 23 | + margin: 45px 0px 45px 0px; |
| 24 | + padding: 0px 8px 0px 8px; |
| 25 | + } |
| 26 | + |
| 27 | + .error { |
| 28 | + color: red; |
| 29 | + padding: 0px 8px 0px 8px; |
| 30 | + margin: -25px 0px -20px 0px; |
| 31 | + } |
| 32 | + |
| 33 | + body { |
| 34 | + font-family: 'Open Sans', 'Helvetica Neue', Helvetica; |
| 35 | + color: #0067AB; |
| 36 | + margin: 15px 99px 0px 98px; |
| 37 | + } |
| 38 | + |
| 39 | + label { |
| 40 | + color: #666666; |
| 41 | + } |
| 42 | + form { |
| 43 | + margin: 0px 0px 45px 0px; |
| 44 | + padding: 0px 8px 0px 8px; |
| 45 | + } |
| 46 | + form > * { |
| 47 | + display: block; |
| 48 | + margin-top: 25px; |
| 49 | + margin-bottom: 7px; |
| 50 | + } |
| 51 | + |
| 52 | + button { |
| 53 | + font-size: 22px; |
| 54 | + color: white; |
| 55 | + background: #0067AB; |
| 56 | + -moz-border-radius: 5px; |
| 57 | + -webkit-border-radius: 5px; |
| 58 | + -o-border-radius: 5px; |
| 59 | + -ms-border-radius: 5px; |
| 60 | + -khtml-border-radius: 5px; |
| 61 | + border-radius: 5px; |
| 62 | + background-image: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#0070BA),color-stop(100%,#00558C)); |
| 63 | + background-image: -webkit-linear-gradient(#0070BA,#00558C); |
| 64 | + background-image: -moz-linear-gradient(#0070BA,#00558C); |
| 65 | + background-image: -o-linear-gradient(#0070BA,#00558C); |
| 66 | + background-image: -ms-linear-gradient(#0070BA,#00558C); |
| 67 | + background-image: linear-gradient(#0070BA,#00558C); |
| 68 | + -moz-box-shadow: inset 0 1px 0 0 #0076c4; |
| 69 | + -webkit-box-shadow: inset 0 1px 0 0 #0076c4; |
| 70 | + -o-box-shadow: inset 0 1px 0 0 #0076c4; |
| 71 | + box-shadow: inset 0 1px 0 0 #0076c4; |
| 72 | + border: 1px solid #005E9C; |
| 73 | + padding: 10px 14px; |
| 74 | + cursor: pointer; |
| 75 | + outline: none; |
| 76 | + display: block; |
| 77 | + font-family: "Helvetica Neue",Helvetica; |
| 78 | + |
| 79 | + -webkit-box-align: center; |
| 80 | + text-align: center; |
| 81 | + box-sizing: border-box; |
| 82 | + letter-spacing: normal; |
| 83 | + word-spacing: normal; |
| 84 | + line-height: normal; |
| 85 | + text-transform: none; |
| 86 | + text-indent: 0px; |
| 87 | + text-shadow: none; |
| 88 | + } |
| 89 | + |
| 90 | + button:hover { |
| 91 | + background-image: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#0079CA),color-stop(100%,#005E9C)); |
| 92 | + background-image: -webkit-linear-gradient(#0079CA,#005E9C); |
| 93 | + background-image: -moz-linear-gradient(#0079CA,#005E9C); |
| 94 | + background-image: -o-linear-gradient(#0079CA,#005E9C); |
| 95 | + background-image: -ms-linear-gradient(#0079CA,#005E9C); |
| 96 | + background-image: linear-gradient(#0079CA,#005E9C); |
| 97 | + -moz-box-shadow: inset 0 0 0 0 #0076c4; |
| 98 | + -webkit-box-shadow: inset 0 0 0 0 #0076c4; |
| 99 | + -o-box-shadow: inset 0 0 0 0 #0076c4; |
| 100 | + box-shadow: inset 0 0 0 0 #0076c4; |
| 101 | + } |
| 102 | + |
| 103 | + button:active { |
| 104 | + background-image: -webkit-gradient(linear,50% 0,50% 100%,color-stop(0%,#00395E),color-stop(100%,#005891)); |
| 105 | + background-image: -webkit-linear-gradient(#00395E,#005891); |
| 106 | + background-image: -moz-linear-gradient(#00395E,#005891); |
| 107 | + background-image: -o-linear-gradient(#00395E,#005891); |
| 108 | + background-image: -ms-linear-gradient(#00395E,#005891); |
| 109 | + background-image: linear-gradient(#00395E,#005891); |
| 110 | + } |
| 111 | + |
| 112 | + input { |
| 113 | + color: black; |
| 114 | + cursor: auto; |
| 115 | + display: inline-block; |
| 116 | + font-family: 'Helvetica Neue', Helvetica; |
| 117 | + font-size: 25px; |
| 118 | + height: 30px; |
| 119 | + letter-spacing: normal; |
| 120 | + line-height: normal; |
| 121 | + margin: 2px 0px 2px 0px; |
| 122 | + padding: 5px; |
| 123 | + text-transform: none; |
| 124 | + vertical-align: baseline; |
| 125 | + width: 500px; |
| 126 | + word-spacing: 0px; |
| 127 | + } |
| 128 | + |
| 129 | + </style> |
| 130 | +</head> |
| 131 | +<body> |
| 132 | + <h1>Reset Your Password<span id='app'></span></h1> |
| 133 | + <noscript>We apologize, but resetting your password requires javascript</noscript> |
| 134 | + <div class='error' id='error'></div> |
| 135 | + <form id='form' action='#' method='POST'> |
| 136 | + <label>New Password for <span id='username_label'></span></label> |
| 137 | + <input name="new_password" type="password" /> |
| 138 | + <input name='utf-8' type='hidden' value='✓' /> |
| 139 | + <input name="username" id="username" type="hidden" /> |
| 140 | + <input name="token" id="token" type="hidden" /> |
| 141 | + <button>Change Password</button> |
| 142 | + </form> |
| 143 | + |
| 144 | +<script language='javascript' type='text/javascript'> |
| 145 | + <!-- |
| 146 | + window.onload = function() { |
| 147 | + var urlParams = {}; |
| 148 | + (function () { |
| 149 | + var pair, // Really a match. Index 0 is the full match; 1 & 2 are the key & val. |
| 150 | + tokenize = /([^&=]+)=?([^&]*)/g, |
| 151 | + // decodeURIComponents escapes everything but will leave +s that should be ' ' |
| 152 | + re_space = function (s) { return decodeURIComponent(s.replace(/\+/g, " ")); }, |
| 153 | + // Substring to cut off the leading '?' |
| 154 | + querystring = window.location.search.substring(1); |
| 155 | + |
| 156 | + while (pair = tokenize.exec(querystring)) |
| 157 | + urlParams[re_space(pair[1])] = re_space(pair[2]); |
| 158 | + })(); |
| 159 | + |
| 160 | + var id = urlParams['id']; |
| 161 | + document.getElementById('form').setAttribute('action', '/apps/' + id + '/request_password_reset'); |
| 162 | + document.getElementById('username').value = urlParams['username']; |
| 163 | + document.getElementById('username_label').appendChild(document.createTextNode(urlParams['username'])); |
| 164 | + |
| 165 | + document.getElementById('token').value = urlParams['token']; |
| 166 | + if (urlParams['error']) { |
| 167 | + document.getElementById('error').appendChild(document.createTextNode(urlParams['error'])); |
| 168 | + } |
| 169 | + if (urlParams['app']) { |
| 170 | + document.getElementById('app').appendChild(document.createTextNode(' for ' + urlParams['app'])); |
| 171 | + } |
| 172 | + } |
| 173 | + //--> |
| 174 | +</script> |
| 175 | +</body> |
0 commit comments