mobile-widgets/qml: add "forgot password" button

The user is most likely to find out, that he does not remember
the password, when asked for it.

Add "forgot password" button in the signin dialog
(both credentials and pin dialog).

Signed-off-by: Jan Iversen <jan@casacondor.com>
This commit is contained in:
jan Iversen 2019-12-28 09:06:22 +01:00 committed by Dirk Hohndel
parent 9e3d85f0e2
commit 25d2f9b84d

View file

@ -144,5 +144,12 @@ Item {
}
}
}
SsrfButton {
id: signin_forgot_password
text: qsTr("Forgot password?")
onClicked: {
Qt.openUrlExternally("https://cloud.subsurface-divelog.org/passwordreset")
}
}
}
}