diff options
| -rw-r--r-- | SignUpFlickable.ui.qml | 24 | 
1 files changed, 22 insertions, 2 deletions
diff --git a/SignUpFlickable.ui.qml b/SignUpFlickable.ui.qml index 375faa4..7a8220c 100644 --- a/SignUpFlickable.ui.qml +++ b/SignUpFlickable.ui.qml @@ -10,10 +10,30 @@ GridLayout {  	property alias signUpSignIn: signIn  	ColumnLayout { -		Layout.margins: 15 +		Layout.margins: 16  		ColumnLayout { - +			spacing: 16 +			ColumnLayout { +				id: columnLayout +				Layout.fillWidth: true +				 +				Label { +					id: signUpTitle +					text: qsTr("Sign Up Title") +					font.family: "Roboto" +					font.weight: Font.Medium +					font.pointSize: 40 +				} +				 +				Label { +					id: signUpSubtitle +					color: "#6c757d" +					text: qsTr("Sign Up Subtitle") +					font.weight: Font.Normal +					font.pointSize: 22 +				} +			}  			ColumnLayout {  				Label {  					text: qsTr("Email address *")  |