2015-02-23 11:08:43 -05:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title> Registration </title>
|
2015-02-24 10:16:40 -05:00
|
|
|
<meta name='viewport' content='width=device-width, initial-scale=1, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0'>
|
2015-02-23 11:08:43 -05:00
|
|
|
<link rel="stylesheet" href="style.css">
|
2015-02-23 12:09:11 -05:00
|
|
|
<script src="js/jquery-2.1.3.min.js"></script>
|
2015-02-23 11:08:43 -05: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()">
|
2015-02-24 11:01:38 -05:00
|
|
|
<form id="registrationForm" onsubmit="matrixRegistration.signUp(); return false;">
|
2015-02-24 11:02:48 -05:00
|
|
|
<div>
|
2015-02-23 11:08:43 -05:00
|
|
|
Create account:<br/>
|
|
|
|
|
|
|
|
<div style="text-align: center">
|
2015-02-24 11:02:48 -05:00
|
|
|
<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/>
|
2015-02-23 12:09:11 -05:00
|
|
|
<span id="feedback" style="color: #f00"></span>
|
|
|
|
<br/>
|
2015-02-24 11:02:48 -05:00
|
|
|
<div id="regcaptcha"></div>
|
2015-02-23 11:08:43 -05:00
|
|
|
|
2015-02-24 11:01:38 -05:00
|
|
|
<button type="submit" style="margin: 10px">Sign up</button>
|
2015-02-23 11:08:43 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|