Skip to content

Commit

Permalink
added mailing list links
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfl committed Dec 18, 2010
1 parent 14c7280 commit 7d903a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Bespin/control.js
Expand Up @@ -404,7 +404,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 listing 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%" /></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>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>');
setTimeout('$("#userName").focus();', 30);
$("#userName,#password").keypress(function (e) {
if(e.keyCode == '13') {
Expand Down
3 changes: 2 additions & 1 deletion static/index.html
Expand Up @@ -66,7 +66,7 @@
<body>
<div id="editor" class="bespin" data-bespinoptions='{ "settings": { "tabstop": 2, "maxConsoleHeight": 150 }, "syntax": "js", "stealFocus": true }'>{CODE}</div>
<div id="entro">
<h2>Welcome to JsApp.US <a href="http://twitter.com/share" class="twitter-share-button" data-url="http://jsapp.us" data-text="JSApp.US: quick way to try #nodejs and host web based node application" data-count="horizontal" data-related="matthewfl">Tweet</a></h2>
<h2>Welcome to JsApp.US <a href="http://twitter.com/share" class="twitter-share-button" data-url="http://jsapp.us" data-text="JSApp.US: quick way to try #nodejs and host web based node application" data-count="none" data-related="matthewfl">Tweet</a></h2>
<p>JsApp.US is a hosting platform for <a href="http://nodejs.org">node.js</a> applications. It is setup to be a platform to coddle to quick, weekend hack like projects.</p>
<p>To get started you can run the test command from the bottom command line or press Control-b.</p>
<br>
Expand Down Expand Up @@ -98,6 +98,7 @@ <h2>Welcome to JsApp.US <a href="http://twitter.com/share" class="twitter-share-
<br>
<a href="https://github.com/matthewfl/node-host/wiki/Api" target="_blank">Database API</a>
<br><a href="https://github.com/matthewfl/node-host/issues" target="_blank">Issue tracking</a>
<br><a href="https://groups.google.com/group/jsapp-us" target="_blank">Mailing list</a>
<br><a href="http://matthewfl.com/category/jsapp-us" target="_blank">Blog</a>
</div>
<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
Expand Down

0 comments on commit 7d903a9

Please sign in to comment.