aboutsummaryrefslogtreecommitdiff
path: root/qml/ConfigurePage.qml
blob: 6b2e4c85750bf5837a6f30727b595b6b9aadeee5 (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.12
import QtQuick.Controls 2.12
import QtQuick.Layouts 1.12
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")
            }
        }
    }
}