summaryrefslogtreecommitdiff
path: root/features/LoginForm.ui.qml
diff options
context:
space:
mode:
Diffstat (limited to 'features/LoginForm.ui.qml')
-rw-r--r--features/LoginForm.ui.qml29
1 files changed, 29 insertions, 0 deletions
diff --git a/features/LoginForm.ui.qml b/features/LoginForm.ui.qml
new file mode 100644
index 0000000..2b241f1
--- /dev/null
+++ b/features/LoginForm.ui.qml
@@ -0,0 +1,29 @@
+import QtQuick 2.12
+import QtQuick.Controls 2.12
+import QtQuick.Controls.Material 2.12
+import QtQuick.Layouts 1.12
+
+Page {
+ property alias toolButton: toolButton
+ property alias contentView: contentView
+
+ header: ToolBar {
+ background: Rectangle {
+ color: "#FAFFFFFF"
+ }
+ RowLayout {
+ ToolButton {
+ id: toolButton
+ icon.name: "back-button"
+ icon.source: "/components/icons/arrow-back-24px.svg"
+ highlighted: true
+ }
+ }
+ }
+
+ StackView {
+ id: contentView
+ anchors.topMargin: 432
+ anchors.fill: parent
+ }
+}