diff options
author | Erik Johnston <erik@matrix.org> | 2014-09-02 16:59:45 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-09-02 16:59:45 +0100 |
commit | 211a8b288a87218f5d9cf458dd41fcefad17d7fc (patch) | |
tree | fea4c252ccd664c6fc14030704f1110eacd0a685 /webclient | |
parent | Bump version and changelog (diff) | |
download | synapse-211a8b288a87218f5d9cf458dd41fcefad17d7fc.tar.xz |
Hide the email textbox during registeration has it has not been wired up yet.
Diffstat (limited to 'webclient')
-rw-r--r-- | webclient/login/register.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webclient/login/register.html b/webclient/login/register.html index 1b470e4554..81995f1ae0 100644 --- a/webclient/login/register.html +++ b/webclient/login/register.html @@ -12,8 +12,8 @@ <div style="text-align: center"> <br/> - <input id="email" size="32" type="text" ng-focus="true" ng-model="account.email" placeholder="Email address (optional)"/> - <div class="smallPrint">Specifying an email address lets other users find you on Matrix more easily,<br/> + <input id="email" size="32" type="text" ng-focus="true" ng-model="account.email" placeholder="Email address (optional)" style="display: none"/> + <div class="smallPrint" style="display: none;">Specifying an email address lets other users find you on Matrix more easily,<br/> and gives you a way to reset your password</div> <input id="desired_user_id" size="32" type="text" ng-model="account.desired_user_id" placeholder="Matrix ID (e.g. bob)"/> <br/> |