This commit is contained in:
2026-04-09 11:16:48 -05:00
parent 76a5bf5917
commit f4b032e96f
23 changed files with 274 additions and 160 deletions

View File

@@ -14,34 +14,40 @@ ClippingWrapperRectangle {
anchors.fill: parent
radius: 10
color: Pywal.special.background
color: "black"
//color: Pywal.special.background
ColumnLayout {
anchors.fill: parent
Text {
id: error
text: ""
color: Pywal.colors.color13
color: "red"
//color: Pywal.colors.color13
visible: false
}
Text {
text: "User"
color: Pywal.special.foreground
color: "white"
//color: Pywal.special.foreground
}
TextInput {
id: username
text: "guest"
color: Pywal.special.foreground
color: "white"
//color: Pywal.special.foreground
}
Text {
text: "Password"
color: Pywal.special.foreground
color: "white"
//color: Pywal.special.foreground
}
TextInput {
id: password
text: "test"
echoMode: TextInput.Password
color: Pywal.special.foreground
color: "white"
//color: Pywal.special.foreground
}
Button {