aboutsummaryrefslogtreecommitdiffstats
path: root/teleterm/src/web/login.rs
Commit message (Collapse)AuthorAgeFilesLines
* just return a future from the handler functionJesse Luehrs2019-12-181-27/+51
|
* pull auth_client out into its own fieldJesse Luehrs2019-11-271-1/+6
| | | | | | it doesn't hurt anything even though it's not super necessary for plain logins, and it's more convenient to access without needing to deconstruct the enum value
* simplifyJesse Luehrs2019-11-271-17/+3
|
* make plain logins also hit the serverJesse Luehrs2019-11-261-5/+129
| | | | this also provides a foundation for how to handle oauth logins
* store more information about the login stateJesse Luehrs2019-11-261-1/+4
| | | | | | we need to know both who we are (so that the webface can display it) and also how to log back in as that user (since oauth methods log back in without specifying the username at all)
* make logins persistentJesse Luehrs2019-11-251-2/+12
| | | | so if the server knows we're logged in, don't show the login page
* start working on the login flowJesse Luehrs2019-11-231-0/+26