forked from matrix-org/synapse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
309 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,3 +41,4 @@ media_store/ | |
build/ | ||
|
||
localhost-800*/ | ||
static/client/register/register_config.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<html> | ||
<head> | ||
<title> Registration </title> | ||
<link rel="stylesheet" href="style.css"> | ||
<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/> | ||
|
||
<div id="regcaptcha" /> | ||
|
||
<button style="margin: 10px">Sign up</button> | ||
</div> | ||
|
||
<div id="serverConfig" ng-show="!wait_3pid_code"> | ||
<label for="homeserver">Home Server:</label> | ||
<input id="homeserver" size="32" type="text" placeholder="URL (e.g. http://matrix.org:8080)"/> | ||
<div class="smallPrint">Your home server stores all your conversation and account data.</div> | ||
</div> | ||
</div> | ||
</form> | ||
</body> | ||
</html> |
Oops, something went wrong.