diff options
| -rw-r--r-- | SignInFlickable.ui.qml | 9 | 
1 files changed, 7 insertions, 2 deletions
diff --git a/SignInFlickable.ui.qml b/SignInFlickable.ui.qml index 2cbbbdf..e32bb9b 100644 --- a/SignInFlickable.ui.qml +++ b/SignInFlickable.ui.qml @@ -11,9 +11,9 @@ GridLayout {  	ColumnLayout {  		Layout.rightMargin: 16  		Layout.leftMargin: 16 -		spacing: 16  		ColumnLayout { +			spacing: 16  			ColumnLayout {  				Label { @@ -90,7 +90,12 @@ GridLayout {  					}  				}  			} - +			Label { +				id: passwordHelper +				text: "Your password must atleast 8 characters long" +				font.pixelSize: 12 +				color: "#6c757d" +			}  			Button {  				id: button  				text: qsTr("Login")  |