diff options
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> |
