diff options
author | Matthew Hodgson <matthew@matrix.org> | 2014-08-17 03:47:58 +0100 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2014-08-17 03:47:58 +0100 |
commit | 48f4497fe988ba2ad4781f8cfeaccf7789e43baa (patch) | |
tree | 439b2693ebcdfa5de2996495b4cb97df51353d80 | |
parent | oops, debugging crept in (diff) | |
download | synapse-48f4497fe988ba2ad4781f8cfeaccf7789e43baa.tar.xz |
unbreak login sequence (which spuriously required a sydent server to be specified, which login.html was no longer doing...)
-rw-r--r-- | webclient/login/login.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webclient/login/login.html b/webclient/login/login.html index 3acd6976c5..b1488b37f0 100644 --- a/webclient/login/login.html +++ b/webclient/login/login.html @@ -15,7 +15,7 @@ <!-- New user registration --> <div> <br/> - <button ng-click="register()" ng-disabled="!account.desired_user_name || !account.homeserver || !account.identityServer || !account.pwd1 || !account.pwd2 || account.pwd1 !== account.pwd2">Register</button> + <button ng-click="register()" ng-disabled="!account.desired_user_name || !account.homeserver || !account.pwd1 || !account.pwd2 || account.pwd1 !== account.pwd2">Register</button> </div> </form> @@ -28,7 +28,7 @@ <br /> <input id="password" size="70" type="password" ng-model="account.password" placeholder="Password"/><br /> <br/> - <button ng-click="login()" ng-disabled="!account.user_id || !account.password || !account.homeserver || !account.identityServer">Login</button> + <button ng-click="login()" ng-disabled="!account.user_id || !account.password || !account.homeserver">Login</button> </div> </form> |