Spectral/qml/Login.qml

152 lines
4.2 KiB
QML
Raw Normal View History

2018-02-23 14:39:14 +00:00
import QtQuick 2.10
import QtQuick.Layouts 1.3
import QtGraphicalEffects 1.0
import QtQuick.Controls 2.3
import QtQuick.Controls.Material 2.3
2018-02-26 12:41:20 +00:00
import Qt.labs.settings 1.0
2018-02-23 14:39:14 +00:00
import "qrc:/qml/component"
Page {
2018-02-27 11:07:50 +00:00
property var controller
2018-02-26 12:41:20 +00:00
property alias homeserver: settings.server
property alias username: settings.user
property alias password: settings.pass
Settings {
id: settings
property alias server: serverField.text
property alias user: usernameField.text
property alias pass: passwordField.text
}
2018-02-23 14:39:14 +00:00
Row {
anchors.fill: parent
Pane {
width: parent.width / 2
height: parent.height
background: Item {
Image {
id: background
anchors.fill: parent
source: "qrc:/asset/img/background.jpg"
fillMode: Image.PreserveAspectCrop
}
ColorOverlay {
anchors.fill: background
source: background
2018-03-01 13:21:09 +00:00
color: Material.accent
opacity: 0.7
2018-02-23 14:39:14 +00:00
}
}
Column {
x: 32
anchors.verticalCenter: parent.verticalCenter
Label {
text: "MATRIX LOGIN."
font.pointSize: 36
font.bold: true
color: "white"
}
Label {
text: "A NEW METHOD OF MESSAGING"
font.pointSize: 12
color: "white"
}
}
}
Pane {
width: parent.width / 2
height: parent.height
padding: 64
Column {
id: main_col
spacing: 8
anchors.fill: parent
ImageStatus {
width: 96
height: width
source: "qrc:/asset/img/avatar.png"
anchors.horizontalCenter: parent.horizontalCenter
}
2018-02-27 11:37:53 +00:00
TextField {
id: serverField
2018-02-23 14:39:14 +00:00
width: parent.width
height: 48
2018-02-27 11:37:53 +00:00
placeholderText: "Server"
leftPadding: 16
topPadding: 0
bottomPadding: 0
background: Rectangle {
color: "#eaeaea"
border.color: parent.activeFocus ? Material.accent : "transparent"
border.width: 2
2018-02-27 11:07:50 +00:00
}
2018-02-27 11:37:53 +00:00
}
2018-02-27 11:07:50 +00:00
2018-02-27 11:37:53 +00:00
TextField {
id: usernameField
width: parent.width
height: 48
placeholderText: "Username"
leftPadding: 16
topPadding: 0
bottomPadding: 0
background: Rectangle {
color: "#eaeaea"
border.color: parent.activeFocus ? Material.accent : "transparent"
border.width: 2
2018-02-23 14:39:14 +00:00
}
}
TextField {
id: passwordField
width: parent.width
height: 48
placeholderText: "Password"
leftPadding: 16
topPadding: 0
bottomPadding: 0
background: Rectangle {
color: "#eaeaea"
border.color: parent.activeFocus ? Material.accent : "transparent"
border.width: 2
}
}
Button {
id: loginButton
text: "LOGIN"
highlighted: true
width: parent.width
2018-02-27 11:07:50 +00:00
onClicked: controller.login(homeserver, username, password)
2018-02-23 14:39:14 +00:00
}
2018-02-26 12:41:20 +00:00
Button {
id: logoutButton
text: "LOGOUT"
flat: true
width: parent.width
2018-02-27 11:07:50 +00:00
onClicked: controller.logout()
2018-02-26 12:41:20 +00:00
}
2018-02-23 14:39:14 +00:00
}
}
}
}