From b8762ddb38dd975b0acb217b793594dfed83a824 Mon Sep 17 00:00:00 2001 From: link2xt Date: Sat, 12 Sep 2020 14:10:13 +0300 Subject: Initial commit --- qml/ConfigurePage.qml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 qml/ConfigurePage.qml (limited to 'qml/ConfigurePage.qml') diff --git a/qml/ConfigurePage.qml b/qml/ConfigurePage.qml new file mode 100644 index 0000000..ace41c8 --- /dev/null +++ b/qml/ConfigurePage.qml @@ -0,0 +1,31 @@ +import QtQuick 2.14 +import QtQuick.Controls 2.14 +import QtQuick.Layouts 1.14 +import QtQml.Models 2.1 +import org.kde.kirigami 2.12 as Kirigami + +Kirigami.Page { + title: qsTr("Configure account") + + ColumnLayout { + anchors.fill: parent + + TextField { + id: addressField + + placeholderText: "Address" + } + TextField { + id: passwordField + + placeholderText: "Password" + echoMode: TextInput.PasswordEchoOnEdit + } + Button { + text: "Login" + onClicked: { + console.log("Login") + } + } + } +} -- cgit v1.2.3-70-g09d2