synapse/static/client/register/index.html

32 lines
1,014 B
HTML
Raw Normal View History

2015-02-23 16:08:43 +00:00
<html>
<head>
<title> Registration </title>
<link rel="stylesheet" href="style.css">
2015-02-23 17:09:11 +00:00
<script src="js/jquery-2.1.3.min.js"></script>
2015-02-23 16:08:43 +00:00
<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/>
2015-02-23 17:09:11 +00:00
<span id="feedback" style="color: #f00"></span>
<br/>
<div id="regcaptcha"></div>
2015-02-23 16:08:43 +00:00
2015-02-23 17:09:11 +00:00
<button type="button" style="margin: 10px" onclick="matrixRegistration.signUp()">Sign up</button>
2015-02-23 16:08:43 +00:00
</div>
</div>
</form>
</body>
</html>