summaryrefslogtreecommitdiff
path: root/Userland/Services/LoginServer
AgeCommit message (Collapse)Author
2022-01-07Everywhere: Fix spelling mistakesmjz19910
2021-11-28Everywhere: Use default execpromises argument for Core::System::pledgeBrian Gianforcaro
2021-11-23LoginServer: Port to LibMain :^)Andreas Kling
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-10-21LoginServer: Capitalize username and password fieldsxSlendiX
This commit changes the TextBox's placeholders for the username and password fields to be capitalized.
2021-10-21LoginServer: Mark the login window as non-closeable and non-minimizableTimothy Flynn
Previously, you could close the window and be permanently logged out.
2021-10-21LoginServer: Mark this component as REQUIREDKarol Kosek
Prior to this change, there was no requirement to build this server. If you build serenity without -DBUILD_EVERYTHING flag, or just play around with your build configuration[1], it left you with a blank screen and this debug line: SystemServer(6:6): LoginServer: binary "/bin/LoginServer" does not exist, skipping service. [1]: Documentation/AdvancedBuildInstructions.md#component-configuration
2021-10-19LoginServer: Fix typo in --auto-login option value nameLinus Groh
2021-10-19LoginServer: Log in when the user presses the enter keyTimothy Flynn
2021-10-18LoginServer: Use the verb "log in" for window title & submit buttonAndreas Kling
2021-10-17LoginServer: Add --auto-login switchPeter Elliott
Auto login will automatically log in a user without prompting for a password, but will still allow logouts and subsequent password logins.
2021-10-17LoginServer: Process logins and start SystemServer in user modePeter Elliott
2021-10-17LoginServer: Layout a basic login windowPeter Elliott