summary refs log tree commit diff
path: root/webclient/login/login-controller.js (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move webclient to a python module so that it can be installedMark Haines2014-11-041-115/+0
|
* Merge branch 'develop' of github.com:matrix-org/synapse into developDavid Baker2014-09-031-1/+1
|\ | | | | | | | | Conflicts: synapse/http/client.py
| * fix the copyright holder from matrix.org to OpenMarket Ltd, as matrix.org ↵Matthew Hodgson2014-09-031-1/+1
| | | | | | | | hasn't been incorporated in time for launch.
* | Make registering and logging in with a threepid work in the webclient.David Baker2014-09-031-3/+30
|/
* licenses, please...Matthew Hodgson2014-09-011-2/+16
|
* don't make HS ports explicit if it's the default for the protocolMatthew Hodgson2014-08-311-1/+4
|
* nasty big monolithic commit of a whole bunch of UI/UX improvements:Matthew Hodgson2014-08-311-48/+11
| | | | | | | | - add a simple CSS template across the app for navigation & cosmetics - split login into login & register, and totally reskin it - restructure room CSS to play nicely with it - implement basis 1:1 chat from user pages - disable autofocus on iOS to improve UX
* Merge branch 'settings-page' into developEmmanuel ROHEE2014-08-221-2/+2
|\
| * Use /home everywhereEmmanuel ROHEE2014-08-221-2/+2
| |
* | Merge branch 'develop' of github.com:matrix-org/synapse into release-v0.0.1Erik Johnston2014-08-221-0/+2
|\ \ | |/ |/|
| * Update web client to use new IS API.David Baker2014-08-221-0/+2
| |
* | Use $location.url instead of $location.path to get clean page URL without ↵Emmanuel ROHEE2014-08-221-2/+2
|/ | | | | | hash arguments of the previous page. This happpens with room URL like http://127.0.0.1:8080/matrix/client/#/room/#public:localhost. The second hash part is transferred to the next page when using $location.path.
* merge weirdnessMatthew Hodgson2014-08-161-1/+1
|
* Event streaming now happens on an app level, rather than a per-room level. ↵Kegan Dougal2014-08-151-3/+4
| | | | Make eventStreamService manage it's own repolling provided no one calls stop() on it. Couple the stream with eventHandlerService so any controller can just blithely call eventStreamService.resume() and expect to 'get stuff' without having to handle promises (though resume() still returns a promise for that request and proxies it through $q). Kill and reset the stream if you logout.
* Pass back the user_id in the response to /login in case it has changed. ↵Kegan Dougal2014-08-141-1/+1
| | | | Store and use that on the webclient rather than the input field.
* hs: Make /login accept full user IDs or just local parts. webclient: Only ↵Kegan Dougal2014-08-141-6/+0
| | | | enable Register button when both password fields match.
* Auto-correct the username when logging in if there isn't an @Kegan Dougal2014-08-141-0/+6
|
* Be more helpful when failing to register/login, stating why (communication ↵Kegan Dougal2014-08-141-4/+16
| | | | error, user in user, wrong credentials, etc). Make the HS send M_USER_IN_USE.
* Added extra nesting .data and rename callback to be response not dataKegan Dougal2014-08-141-2/+2
|
* Move the unknown token broadcast to the interceptor. Return the $http ↵Kegan Dougal2014-08-141-5/+9
| | | | promise and not a wrapped one via $q. Everything now needs a level deeper nesting. Fixed registration and login.
* Guess the home server URL on the login screen by inspecting the URL of the ↵Kegan Dougal2014-08-141-1/+9
| | | | web client.
* Reference Matrix Home Servermatrix.org2014-08-121-0/+81