Skip to content
This repository has been archived by the owner on Mar 30, 2023. It is now read-only.

Commit

Permalink
updating the login message with new info
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfl committed Jan 5, 2011
1 parent dd5e75a commit 8a00496
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bespin/control.js
Expand Up @@ -457,7 +457,7 @@ exports.logoutCommand = function (args, request) {
exports.loginCommand = function (args,request) {
if(userName !== null) return exports.logoutCommand();
request.done();
$.facebox('<div id="login" class="bespin"><p>Check out the new profile and sharing command listed in the sidebar</p><form action="/newUser" method="post" type="input">User:<input id="userName" name="userName" type="input" style="color:#000; width:90%;"/><br>Password:<input id="password" name="password" type="password" style="color:#000; width: 90%; "/><div id="moreUser" style="display:none;">Password Again:<input id="password2" name="password2" type="password" style="color: #000; width:90%" /><br>Email:<input id="userEmail" name="userEmail" type="input" style="color: #000; width:90%" /><br><a href="https://groups.google.com/group/jsapp-us" target="_blank">Join the mailing list</a></div><br><input value="login" type="button" id="loginButton" style="width:40%; display: inline;" /><input value="new user" type="submit" id="newUserButton" style="width:40%; display:inline;"/></form></div>');
$.facebox('<div id="login" class="bespin"><p>Install the new Jsapp npm command (npm install jsapp), JsApp now supports coffee script, just add the suffix .coffee to any file</p><form action="/newUser" method="post" type="input">User:<input id="userName" name="userName" type="input" style="color:#000; width:90%;"/><br>Password:<input id="password" name="password" type="password" style="color:#000; width: 90%; "/><div id="moreUser" style="display:none;">Password Again:<input id="password2" name="password2" type="password" style="color: #000; width:90%" /><br>Email:<input id="userEmail" name="userEmail" type="input" style="color: #000; width:90%" /><br><a href="https://groups.google.com/group/jsapp-us" target="_blank">Join the mailing list</a></div><br><input value="login" type="button" id="loginButton" style="width:40%; display: inline;" /><input value="new user" type="submit" id="newUserButton" style="width:40%; display:inline;"/></form></div>');
setTimeout('$("#userName").focus();', 30);
$("#userName,#password").keypress(function (e) {
if(e.keyCode == '13') {
Expand Down

0 comments on commit 8a00496

Please sign in to comment.