diff options
author | Erik Johnston <erik@matrix.org> | 2015-03-02 13:53:30 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-03-02 13:53:30 +0000 |
commit | 0a036944bd2f0b42195b1984ff0ad2b6ff3d50f3 (patch) | |
tree | 25ca81b14a72192a89c9399b3d80180ac124ca14 /static/client/register/index.html | |
parent | Must update pending_transactions map before yield'ing (diff) | |
parent | Merge pull request #83 from matrix-org/nofile_limit_config (diff) | |
download | synapse-0a036944bd2f0b42195b1984ff0ad2b6ff3d50f3.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into batched_get_pdu
Diffstat (limited to 'static/client/register/index.html')
-rw-r--r-- | static/client/register/index.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/static/client/register/index.html b/static/client/register/index.html new file mode 100644 index 0000000000..600b3ee41e --- /dev/null +++ b/static/client/register/index.html @@ -0,0 +1,32 @@ +<html> +<head> +<title> Registration </title> +<meta name='viewport' content='width=device-width, initial-scale=1, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0'> +<link rel="stylesheet" href="style.css"> +<script src="js/jquery-2.1.3.min.js"></script> +<script src="js/recaptcha_ajax.js"></script> +<script src="register_config.js"></script> +<script src="js/register.js"></script> +</head> +<body onload="matrixRegistration.onLoad()"> +<form id="registrationForm" onsubmit="matrixRegistration.signUp(); return false;"> + <div> + Create account:<br/> + + <div style="text-align: center"> + <input id="desired_user_id" size="32" type="text" placeholder="Matrix ID (e.g. bob)" autocapitalize="off" autocorrect="off" /> + <br/> + <input id="pwd1" size="32" type="password" placeholder="Type a password"/> + <br/> + <input id="pwd2" size="32" type="password" placeholder="Confirm your password"/> + <br/> + <span id="feedback" style="color: #f00"></span> + <br/> + <div id="regcaptcha"></div> + + <button type="submit" style="margin: 10px">Sign up</button> + </div> + </div> +</form> +</body> +</html> |