QML UI: Implement saving of cloud password

If the user ticks the 'Save Password' box, then we save the password
for future use.

Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com>
This commit is contained in:
Grace Karanja 2015-07-21 11:57:10 +03:00
parent b28517b9b0
commit ea11eff279
3 changed files with 30 additions and 4 deletions

View file

@ -50,6 +50,7 @@ Item {
}
CheckBox {
checked: manager.saveCloudPassword
id: savePassword
}
@ -63,6 +64,7 @@ Item {
onClicked: {
manager.cloudUserName = login.text
manager.cloudPassword = password.text
manager.saveCloudPassword = savePassword.checked
manager.savePreferences()
stackView.pop()
}