diff options
| author | sostler <sbostler@gmail.com> | 2009-11-24 23:43:43 -0500 |
|---|---|---|
| committer | sostler <sbostler@gmail.com> | 2009-11-24 23:43:43 -0500 |
| commit | 105ef5e0142d33c0dc24f7f0422f279e4ef1fc23 (patch) | |
| tree | a85a0d5313269c2e3fb2ddcb3c974b0e020a57af /static/register.html | |
| parent | 40a57a474294244832a6023a10592a38a6178b91 (diff) | |
Added persistent rooms
Diffstat (limited to 'static/register.html')
| -rwxr-xr-x | static/register.html | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/static/register.html b/static/register.html index e5ae761..acc13da 100755 --- a/static/register.html +++ b/static/register.html @@ -11,16 +11,24 @@ </script> </head> <body> - <h1>Register</h1> - <span>Nickname:</span> - <input type="text" id="nickInput" /> - <br /> - <span>Email:</span> - <input type="text" id="emailInput" /> - <br /> - <span>Password:</span> - <input type="password" id="passwordInput" /> - <br /> - <input type="submit" id="submit" value="register" /> + <div id="registerbox"> + <h1>Register</h1> + <span>Nickname:</span> + <input type="text" id="nickInput" /> + <br /> + <span>Email:</span> + <input type="text" id="emailInput" /> + <br /> + <span>Password:</span> + <input type="password" id="passwordInput" /> + <br /> + <input type="submit" id="submit" value="register" /> + </div> + + <div id="confirmationbox" style="display: none"> + <h1>You've registered!</h1> + <span>Please wait as you're redirected to the chat.</span> + </div> + </body> </html> |
