b267ef6562
- Put the server field after user & pass, it makes more sense to have the default focused field at the start - Hide the currently unimplemented login method selection - Rename Recovery tab to Reset (shorter)
16 lines
298 B
QML
16 lines
298 B
QML
import QtQuick 2.12
|
|
import QtQuick.Layouts 1.12
|
|
import "../../Base"
|
|
|
|
HPage {
|
|
HTabbedBoxes {
|
|
tabModel: [
|
|
qsTr("Sign in"), qsTr("Register"), qsTr("Reset"),
|
|
]
|
|
|
|
SignIn { Component.onCompleted: forceActiveFocus() }
|
|
Register {}
|
|
Recovery {}
|
|
}
|
|
}
|