Add back button to SSO login

This commit is contained in:
Tobias Fella
2022-09-23 20:05:28 +02:00
parent 058e8034d9
commit 055deb4115

View File

@@ -26,7 +26,14 @@ LoginStep {
processed("qrc:/imports/NeoChat/Component/Login/Loading.qml") processed("qrc:/imports/NeoChat/Component/Login/Loading.qml")
} }
} }
RowLayout {
QQC2.Button {
text: i18nc("@action:button", "Back")
onClicked: {
module.source = "qrc:/imports/NeoChat/Component/Login/Login.qml"
}
}
QQC2.Button { QQC2.Button {
text: i18n("Login") text: i18n("Login")
onClicked: { onClicked: {
@@ -37,4 +44,5 @@ LoginStep {
Keys.onReturnPressed: clicked() Keys.onReturnPressed: clicked()
} }
} }
}
} }