|
| 1 | +<!DOCTYPE html> |
| 2 | + |
| 3 | +<!-- |
| 4 | +# |
| 5 | +# encrypted-sign-in.htm |
| 6 | +# |
| 7 | +# Copyright (C) 2009-12 by RStudio, Inc. |
| 8 | +# |
| 9 | +# This program is licensed to you under the terms of version 3 of the |
| 10 | +# GNU Affero General Public License. This program is distributed WITHOUT |
| 11 | +# ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THOSE OF NON-INFRINGEMENT, |
| 12 | +# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Please refer to the |
| 13 | +# AGPL (http://www.gnu.org/licenses/agpl-3.0.txt) for more details. |
| 14 | +# |
| 15 | +--> |
| 16 | + |
| 17 | +<html> |
| 18 | + |
| 19 | +<head> |
| 20 | + |
| 21 | +<title>RStudio Sign In</title> |
| 22 | +<link rel="shortcut icon" href="images/favicon.ico" /> |
| 23 | + |
| 24 | +<script language='javascript'> |
| 25 | +function verifyMe() |
| 26 | +{ |
| 27 | + if(document.getElementById('username').value=='') |
| 28 | + { |
| 29 | + alert('You must enter a username'); |
| 30 | + document.getElementById('username').focus(); |
| 31 | + return false; |
| 32 | + } |
| 33 | + if(document.getElementById('password').value=='') |
| 34 | + { |
| 35 | + alert('You must enter a password'); |
| 36 | + document.getElementById('password').focus(); |
| 37 | + return false; |
| 38 | + } |
| 39 | + return true; |
| 40 | +} |
| 41 | +</script> |
| 42 | + |
| 43 | +<link rel="stylesheet" href="rstudio.css" type="text/css"/> |
| 44 | + |
| 45 | +<style type="text/css"> |
| 46 | + |
| 47 | +body, td { |
| 48 | + font-size: 12px; |
| 49 | +} |
| 50 | + |
| 51 | +#caption { |
| 52 | + text-align: center; |
| 53 | + font-size: 14px; |
| 54 | + margin-right: 0; |
| 55 | + width: 100%; |
| 56 | +} |
| 57 | + |
| 58 | +input[type=text], input[type=password] { |
| 59 | + width: 262px; |
| 60 | + border: 1px solid #aaa; |
| 61 | + font-size: 14px; |
| 62 | + padding: 3px; |
| 63 | + -moz-border-radius: 4px; |
| 64 | + -webkit-border-radius: 4px; |
| 65 | + outline: none; |
| 66 | +} |
| 67 | + |
| 68 | +#buttonpanel { |
| 69 | + text-align: center; |
| 70 | + margin-top: 12px; |
| 71 | +} |
| 72 | +#errorpanel { |
| 73 | + text-align: center; |
| 74 | + padding: 0 25% 0 25%; |
| 75 | + color: red; |
| 76 | + display: #errorDisplay#; |
| 77 | + font-weight: bold; |
| 78 | +} |
| 79 | +button.fancy { |
| 80 | + padding: 0; |
| 81 | + border: 0 none; |
| 82 | + margin: 0; |
| 83 | + outline: none; |
| 84 | + cursor: pointer; |
| 85 | + background-color: white; |
| 86 | +} |
| 87 | +button.fancy .left { |
| 88 | + width: 11px; |
| 89 | + height: 35px; |
| 90 | + background: url(images/buttonLeft.png) center right no-repeat; |
| 91 | +} |
| 92 | +button.fancy .inner { |
| 93 | + color: white; |
| 94 | + font-weight: bold; |
| 95 | + font-size: 13px; |
| 96 | + background: url(images/buttonTile.png) center repeat-x; |
| 97 | + height: 35px; |
| 98 | + padding: 5px; |
| 99 | + padding-top: 1px; |
| 100 | +} |
| 101 | +button.fancy .right { |
| 102 | + width: 11px; |
| 103 | + height: 35px; |
| 104 | + background: url(images/buttonRight.png) center left no-repeat; |
| 105 | +} |
| 106 | +</style> |
| 107 | + |
| 108 | +<script type="text/javascript" src="js/encrypt.min.js"></script> |
| 109 | +<script type="text/javascript"> |
| 110 | +function prepare() { |
| 111 | + if (!verifyMe()) |
| 112 | + return false; |
| 113 | + try { |
| 114 | + var user = document.getElementById('username').value |
| 115 | + |
| 116 | + if (user=="mlds") { |
| 117 | + user = "jovyan" |
| 118 | + } |
| 119 | + var payload = user + "\n" + |
| 120 | + document.getElementById('password').value; |
| 121 | + var xhr = new XMLHttpRequest(); |
| 122 | + xhr.open("GET", "#'publicKeyUrl#", true); |
| 123 | + xhr.onreadystatechange = function() { |
| 124 | + try { |
| 125 | + if (xhr.readyState == 4) { |
| 126 | + if (xhr.status != 200) { |
| 127 | + var errorMessage; |
| 128 | + if (xhr.status == 0) |
| 129 | + errorMessage = "Error: Could not reach server--check your internet connection"; |
| 130 | + else |
| 131 | + errorMessage = "Error: " + xhr.statusText; |
| 132 | + |
| 133 | + var errorDiv = document.getElementById('errorpanel'); |
| 134 | + errorDiv.innerHTML = ''; |
| 135 | + var errorp = document.createElement('p'); |
| 136 | + errorDiv.appendChild(errorp); |
| 137 | + if (typeof(errorp.innerText) == 'undefined') |
| 138 | + errorp.textContent = errorMessage; |
| 139 | + else |
| 140 | + errorp.innerText = errorMessage; |
| 141 | + errorDiv.style.display = 'block'; |
| 142 | + } |
| 143 | + else { |
| 144 | + var response = xhr.responseText; |
| 145 | + var chunks = response.split(':', 2); |
| 146 | + var exp = chunks[0]; |
| 147 | + var mod = chunks[1]; |
| 148 | + var encrypted = encrypt(payload, exp, mod); |
| 149 | + document.getElementById('persist').value = document.getElementById('staySignedIn').checked ? "1" : "0"; |
| 150 | + document.getElementById('package').value = encrypted; |
| 151 | + document.getElementById('clientPath').value = window.location.pathname; |
| 152 | + document.realform.submit(); |
| 153 | + } |
| 154 | + } |
| 155 | + } catch (exception) { |
| 156 | + alert("Error: " + exception); |
| 157 | + } |
| 158 | + }; |
| 159 | + xhr.send(null); |
| 160 | + } catch (exception) { |
| 161 | + alert("Error: " + exception); |
| 162 | + } |
| 163 | +} |
| 164 | +function submitRealForm() { |
| 165 | + if (prepare()) |
| 166 | + document.realform.submit(); |
| 167 | +} |
| 168 | +</script> |
| 169 | + |
| 170 | +</head> |
| 171 | + |
| 172 | +<h3 id="banner"><a href="http://www.rstudio.com"><img src="images/rstudio.png" width="78" height="24" title="RStudio"/></a></h3> |
| 173 | + |
| 174 | +<div id="errorpanel"> |
| 175 | +<p>Error: #errorMessage#</p> |
| 176 | +</div> |
| 177 | + |
| 178 | +<form method="POST" #!formAction#> |
| 179 | +<table id="border" align="center"> |
| 180 | + <tr> |
| 181 | + <td> |
| 182 | + <h2 id="caption">Sign in to RStudio</h2> |
| 183 | + <p> |
| 184 | + <label for="username">Username:</label><br /> |
| 185 | + <input type='text' |
| 186 | + name='username' |
| 187 | + value='mlds' |
| 188 | + id='username' |
| 189 | + size='45'/><br /> |
| 190 | + </p> |
| 191 | + <p> |
| 192 | + <label for="password">Password:</label><br /> |
| 193 | + <input type='password' |
| 194 | + name='password' |
| 195 | + value='mlds' |
| 196 | + id='password' |
| 197 | + size='45' |
| 198 | + autocomplete='off' /><br /> |
| 199 | + </p> |
| 200 | + <p style="display: #staySignedInDisplay#;"> |
| 201 | + <input type="checkbox" name="staySignedIn" id="staySignedIn" value="1"/> |
| 202 | + <label for="staySignedIn">Stay signed in</label> |
| 203 | + </p> |
| 204 | + <input type="hidden" name="appUri" value="#appUri#"/> |
| 205 | + <div id="buttonpanel"><button class="fancy" type="submit"><table cellpadding="0" cellspacing="0" border="0"> |
| 206 | + <tr> |
| 207 | + <td class="left"></td> |
| 208 | + <td class="inner" valign="middle">Sign In</td> |
| 209 | + <td class="right"></td> |
| 210 | + </tr> |
| 211 | + </table></button></div> |
| 212 | + </td> |
| 213 | + </tr> |
| 214 | +</table> |
| 215 | +</form> |
| 216 | + |
| 217 | +<form action="#action#" name="realform" method="POST"> |
| 218 | + <input type="hidden" name="persist" id="persist" value=""/> |
| 219 | + <input type="hidden" name="appUri" value="#appUri#"/> |
| 220 | + <input type="hidden" name="clientPath" id="clientPath" value=""/> |
| 221 | + <input id="package" type="hidden" name="v" value=""/> |
| 222 | +</form> |
| 223 | + |
| 224 | +<div id="login-html"> |
| 225 | +#!loginPageHtml# |
| 226 | +</div> |
| 227 | + |
| 228 | + |
| 229 | +<script type="text/javascript"> |
| 230 | +document.getElementById('username').focus(); |
| 231 | +</script> |
| 232 | +</body> |
| 233 | +</html> |
0 commit comments