diff options
| author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-08 18:17:26 +0800 | 
|---|---|---|
| committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-08 18:17:26 +0800 | 
| commit | c47e6982f187ac363d62d396819f5b438c63aad4 (patch) | |
| tree | bb19155331775dbed0546bfd434b6b0e904cbbe3 | |
| parent | c40b207e0051a2f8c6da25bdb835a97e96f3d1dc (diff) | |
Fix remaining sign in text & fonts
| -rw-r--r-- | SignInFlickable.ui.qml | 31 | 
1 files changed, 22 insertions, 9 deletions
diff --git a/SignInFlickable.ui.qml b/SignInFlickable.ui.qml index f832b22..4d83eaa 100644 --- a/SignInFlickable.ui.qml +++ b/SignInFlickable.ui.qml @@ -8,6 +8,12 @@ GridLayout {  	property alias signInButton: button  	property alias signInSignUp: signUp +	FontLoader { +		id: heebo +		name: "Heebo" +		source: "Heebo/Heebo-Bold.ttf" +	} +  	ColumnLayout {  		Layout.rightMargin: 16  		Layout.leftMargin: 16 @@ -16,12 +22,11 @@ GridLayout {  			spacing: 16  			ColumnLayout {  				id: columnLayout -				Layout.fillWidth: true  				Label {  					id: signInTitle -					text: qsTr("Sign In Title") -					font.family: "Roboto" +					text: qsTr("Login Into Eduport") +					font.family: heebo.name  					font.weight: Font.Medium  					font.pointSize: 40  				} @@ -29,16 +34,20 @@ GridLayout {  				Label {  					id: signInSubtitle  					color: "#6c757d" -					text: qsTr("Sign In Subtitle") +					text: qsTr("Nice to see you! Please log" +						+ " in with your account.") +					wrapMode: Text.Wrap +					Layout.fillWidth: true  					font.weight: Font.Normal  					font.pointSize: 22 +					font.family: "Roboto"  				}  			}  			ColumnLayout {  				Label {  					text: qsTr("Email address *")  					font.pixelSize: 16 -					font.family: "roboto" +					font.family: "Roboto"  				}  				Rectangle { @@ -63,7 +72,7 @@ GridLayout {  							id: email  							placeholderText: qsTr("E-mail")  							font.pixelSize: 16 -							font.family: "roboto" +							font.family: "Roboto"  							Layout.fillWidth: true  							Layout.fillHeight: true  							background: Rectangle { @@ -78,7 +87,7 @@ GridLayout {  				Label {  					text: qsTr("Password *")  					font.pixelSize: 16 -					font.family: "roboto" +					font.family: "Roboto"  				}  				Rectangle { @@ -98,8 +107,9 @@ GridLayout {  						}  						TextField {  							id: password -							placeholderText: qsTr("Password") +							placeholderText: qsTr("password")  							font.pixelSize: 16 +							font.family: "Roboto"  							Layout.fillWidth: true  							Layout.fillHeight: true  							background: Rectangle { @@ -111,7 +121,7 @@ GridLayout {  			}  			Label {  				id: passwordHelper -				text: "Your password must atleast 8 characters long" +				text: "Your password must be 8 characters at least"  				font.pixelSize: 12  				color: "#6c757d"  			} @@ -126,6 +136,7 @@ GridLayout {  					contentItem: Text {  						color: "#6c757d"  						text: rememberCheckBox.text +						font: rememberCheckBox.font  						verticalAlignment: Text.AlignVCenter  						leftPadding: rememberCheckBox.indicator.width + rememberCheckBox.spacing  					} @@ -169,11 +180,13 @@ GridLayout {  			Label {  				text: qsTr("Don't have an account?")  				font.pixelSize: 16 +				font.family: "Roboto"  			}  			Text {  				id: signUp  				text: "<a href=\"sign-up.html\">Signup here</a>"  				font.pixelSize: 16 +				font.family: "Roboto"  				font.underline: false  				linkColor: Qt.rgba(.0235, .416, .788, 1.0)  			}  |