diff options
author | Erik Johnston <erik@matrix.org> | 2015-02-24 10:00:33 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-02-24 10:00:33 +0000 |
commit | c0aaf9fe767ec67fd1ea8229c3282544cc4a0b64 (patch) | |
tree | 7fa41792cb0283a34f327935159e8b26c29857c8 /static/client/register/index.html | |
parent | Use OrderedDict for @cached backing store, so we can evict the oldest key unb... (diff) | |
parent | Update CHANGES and UPGRADE (diff) | |
download | synapse-c0aaf9fe767ec67fd1ea8229c3282544cc4a0b64.tar.xz |
Merge pull request #89 from matrix-org/registration-fallback
Registration fallback
Diffstat (limited to 'static/client/register/index.html')
-rw-r--r-- | static/client/register/index.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/static/client/register/index.html b/static/client/register/index.html new file mode 100644 index 0000000000..d7ed8a1fe7 --- /dev/null +++ b/static/client/register/index.html @@ -0,0 +1,31 @@ +<html> +<head> +<title> Registration </title> +<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"> + <div> + Create account:<br/> + + <div style="text-align: center"> + <input id="desired_user_id" size="32" type="text" placeholder="Matrix ID (e.g. bob)"/> + <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="button" style="margin: 10px" onclick="matrixRegistration.signUp()">Sign up</button> + </div> + </div> +</form> +</body> +</html> |