2019-12-19 07:46:16 -04:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
2019-12-07 09:38:36 -04:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
|
|
|
import "../../Base"
|
|
|
|
|
2020-06-25 08:32:08 -04:00
|
|
|
HPage {
|
|
|
|
id: page
|
2020-03-19 20:33:46 -04:00
|
|
|
|
2020-06-25 08:32:08 -04:00
|
|
|
HTabbedBox {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
width: Math.min(implicitWidth, page.availableWidth)
|
|
|
|
height: Math.min(implicitHeight, page.availableHeight)
|
2019-12-07 09:38:36 -04:00
|
|
|
|
2020-06-25 08:32:08 -04:00
|
|
|
header: HTabBar {
|
|
|
|
HTabButton { text: qsTr("Sign in") }
|
|
|
|
HTabButton { text: qsTr("Register") }
|
|
|
|
HTabButton { text: qsTr("Reset") }
|
|
|
|
}
|
|
|
|
|
|
|
|
SignIn {}
|
2019-12-07 11:24:08 -04:00
|
|
|
Register {}
|
2019-12-08 05:31:02 -04:00
|
|
|
Reset {}
|
2019-12-07 09:38:36 -04:00
|
|
|
}
|
|
|
|
}
|