summaryrefslogtreecommitdiff
path: root/Authentication/SignIn.ui.qml
diff options
context:
space:
mode:
Diffstat (limited to 'Authentication/SignIn.ui.qml')
-rw-r--r--Authentication/SignIn.ui.qml21
1 files changed, 3 insertions, 18 deletions
diff --git a/Authentication/SignIn.ui.qml b/Authentication/SignIn.ui.qml
index cb634a1..f36f61d 100644
--- a/Authentication/SignIn.ui.qml
+++ b/Authentication/SignIn.ui.qml
@@ -4,6 +4,7 @@ import QtQuick.Layouts 1.15
import Bootstrap 5.3
import Eduport 1.4
import "../Label" as Lbl
+import "../TextField" as TxtFld
import "../Button" as BsBtn
Flickable {
@@ -74,19 +75,11 @@ Flickable {
Layout.margins: 16
}
- TextField {
+ TxtFld.Input {
id: email
placeholderText: qsTr("E-mail")
- font {
- family: Bootstrap.bodyFont.family
- weight: Bootstrap.bodyFont.weight
- pointSize: Eduport.formControlFontSize
- }
Layout.fillWidth: true
Layout.fillHeight: true
- background: Rectangle {
- color: "transparent"
- }
}
}
}
@@ -114,20 +107,12 @@ Flickable {
Layout.margins: 16
}
- TextField {
+ TxtFld.Input {
id: password
placeholderText: qsTr("password")
echoMode: TextInput.Password
- font {
- family: Bootstrap.bodyFont.family
- weight: Bootstrap.bodyFont.weight
- pointSize: Eduport.formControlFontSize
- }
Layout.fillWidth: true
Layout.fillHeight: true
- background: Rectangle {
- color: "transparent"
- }
}
}
}