2020-07-02 18:06:43 +02:00
|
|
|
import QtQuick 2.12
|
2020-01-16 16:30:39 +01:00
|
|
|
import loginui1 1.0
|
|
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
|
width: Constants.width
|
|
|
|
|
height: Constants.height
|
2020-07-02 18:06:43 +02:00
|
|
|
color: "#fdfdfd"
|
2020-01-16 16:30:39 +01:00
|
|
|
|
|
|
|
|
Text {
|
|
|
|
|
id: pageTitle
|
|
|
|
|
text: qsTr("Qt Account")
|
|
|
|
|
font.pixelSize: 24
|
2020-07-02 18:06:43 +02:00
|
|
|
anchors.verticalCenterOffset: -153
|
|
|
|
|
anchors.horizontalCenterOffset: 1
|
|
|
|
|
anchors.centerIn: parent
|
|
|
|
|
font.family: Constants.font.family
|
2020-01-16 16:30:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Image {
|
|
|
|
|
id: logo
|
2020-07-02 18:06:43 +02:00
|
|
|
x: 13
|
|
|
|
|
y: 0
|
2020-01-16 16:30:39 +01:00
|
|
|
width: 100
|
|
|
|
|
height: 100
|
|
|
|
|
source: "qt_logo_green_64x64px.png"
|
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PushButton {
|
2020-07-02 18:06:43 +02:00
|
|
|
id: loginButton
|
|
|
|
|
x: 262
|
|
|
|
|
y: 343
|
2020-01-16 16:30:39 +01:00
|
|
|
width: 120
|
|
|
|
|
height: 40
|
2020-07-02 18:06:43 +02:00
|
|
|
text: qsTr("Log In")
|
2020-01-16 16:30:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PushButton {
|
2020-07-02 18:06:43 +02:00
|
|
|
id: registerButton
|
|
|
|
|
x: 262
|
|
|
|
|
y: 389
|
2020-01-16 16:30:39 +01:00
|
|
|
width: 120
|
|
|
|
|
height: 40
|
2020-07-02 18:06:43 +02:00
|
|
|
text: qsTr("Create Account")
|
2020-01-16 16:30:39 +01:00
|
|
|
}
|
|
|
|
|
}
|