1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:07:44 +00:00

LoginServer: Capitalize username and password fields

This commit changes the TextBox's placeholders for the username and
password fields to be capitalized.
This commit is contained in:
xSlendiX 2021-10-21 18:04:53 +03:00 committed by Linus Groh
parent d621534511
commit bf80dea39c

View file

@ -15,12 +15,12 @@
@GUI::TextBox {
name: "username"
placeholder: "username"
placeholder: "Username"
}
@GUI::PasswordBox {
name: "password"
placeholder: "password"
placeholder: "Password"
}
@GUI::Widget {