aboutsummaryrefslogtreecommitdiff
path: root/qml/ConfigurePage.qml
blob: ace41c875b9fb569d64709983fcbc6b91f3ddba2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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")
            }
        }
    }
}