Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.83 KB | None | 0 0
  1. <script language="JavaScript">
  2.     function doLogin( form )
  3.     {
  4.         window.location = "cmd://"+form.username.value;
  5.     }
  6. </script>
  7.  
  8. <h3>Login:</h3>
  9.  
  10. <p>
  11. Just enter any name you want, with no password. Character and account
  12. information is not yet persisted to the DB, and a new character will
  13. be rolled for you each time you connect.
  14. </p>
  15.  
  16. <form>
  17.     <table>
  18.         <tr>
  19.             <td align="right">
  20.                 Username:
  21.             </td>
  22.             <td align="center">
  23.                 <input id="username" name="username" type="text" size="15"/>
  24.             </td>
  25.         </tr>
  26.         <tr>
  27.             <td align="right">
  28.                 Password:
  29.             </td>
  30.             <td align="center">
  31.                 <input id="password" name="password" type="password" size="15"/>
  32.             </td>
  33.         </tr>
  34.         <tr>
  35.             <td span=2 align="center">
  36.                 <input type="button" value="Login" onClick="doLogin(this.form)"/>
  37.             </td>
  38.         </tr>
  39.     </table>
  40. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement