diff options
author | Mark Haines <mark.haines@matrix.org> | 2014-11-04 15:57:23 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2014-11-04 15:57:23 +0000 |
commit | 89ba802b23bf1fd22afbc5e9a4b3b732264e3c18 (patch) | |
tree | 34b7803cf8dfb570165c1b1c6f674dc5ca4476c7 /webclient/login/register.html | |
parent | Merge pull request #11 from matrix-org/webclient-room-data-restructure (diff) | |
download | synapse-89ba802b23bf1fd22afbc5e9a4b3b732264e3c18.tar.xz |
Move webclient to a python module so that it can be installed
Diffstat (limited to 'webclient/login/register.html')
-rw-r--r-- | webclient/login/register.html | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/webclient/login/register.html b/webclient/login/register.html deleted file mode 100644 index a27f9ad4e8..0000000000 --- a/webclient/login/register.html +++ /dev/null @@ -1,58 +0,0 @@ -<div ng-controller="RegisterController" class="register"> - <div id="wrapper" class="loginWrapper"> - - <a href ng-click="goToPage('/')"> - <img src="img/logo.png" width="240" height="102" alt="[matrix]" style="padding: 50px"/> - </a> - <br/> - - <form id="loginForm" novalidate> - <div> - Create account:<br/> - - <div style="text-align: center"> - <br/> - <input ng-show="!wait_3pid_code" id="email" size="32" type="text" ng-focus="true" ng-model="account.email" placeholder="Email address (optional)"/> - <div ng-show="!wait_3pid_code" class="smallPrint">Specifying an email address lets other users find you on Matrix more easily,<br/> - and will give you a way to reset your password in the future</div> - <span ng-show="reenter_username">Choose another username:</span> - <input ng-show="!wait_3pid_code || reenter_username" id="desired_user_id" size="32" type="text" ng-model="account.desired_user_id" placeholder="Matrix ID (e.g. bob)"/> - <br ng-show="!wait_3pid_code" /> - <input ng-show="!wait_3pid_code" id="pwd1" size="32" type="password" ng-model="account.pwd1" placeholder="Type a password"/> - <br ng-show="!wait_3pid_code" /> - <input ng-show="!wait_3pid_code" id="pwd2" size="32" type="password" ng-model="account.pwd2" placeholder="Confirm your password"/> - <br ng-show="!wait_3pid_code" /> - <input ng-show="!wait_3pid_code" id="displayName" size="32" type="text" ng-model="account.displayName" placeholder="Display name (e.g. Bob Obson)"/> - <br ng-show="!wait_3pid_code" /> - <br ng-show="!wait_3pid_code" /> - - - <div id="regcaptcha" ng-init="init()" /> - - <button ng-show="!wait_3pid_code" ng-click="register()" ng-disabled="!account.desired_user_id || !account.homeserver || !account.pwd1 || !account.pwd2 || account.pwd1 !== account.pwd2">Sign up</button> - - <div ng-show="wait_3pid_code"> - <span>Please enter the verification code sent to {{ account.email }}</span><br /> - <input id="threepidtoken" size="32" type="text" ng-focus="true" ng-model="account.threepidtoken" placeholder="Verification Code"/><br /> - <button ng-click="verifyToken()" ng-disabled="!account.threepidtoken">Validate</button> - </div> - <br/><br/> - </div> - - <div class="feedback">{{ feedback }} {{ login_error_msg }}</div> - - <div id="serverConfig" ng-show="!wait_3pid_code"> - <label for="homeserver">Home Server:</label> - <input id="homeserver" size="32" type="text" ng-model="account.homeserver" placeholder="URL (e.g. http://matrix.org:8080)"/> - <div class="smallPrint">Your home server stores all your conversation and account data.</div> - <label for="identityServer">Identity Server:</label> - <input id="identityServer" size="32" type="text" ng-model="account.identityServer" placeholder="URL (e.g. http://matrix.org:8090)"/> - <div class="smallPrint">Matrix provides identity servers to track which emails etc. belong to which Matrix IDs.<br/> - Only http://matrix.org:8090 currently exists.</div> - </div> - </div> - </form> - - </div> - </div> -</div> |