aboutsummaryrefslogtreecommitdiffstats
path: root/doc/qtdesignstudio/examples/Loginui1/content/Screen01.ui.qml
blob: ba11f00dc59f4eb9a6e1a3d14faab111ef094cbf (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Controls
import Loginui1

Rectangle {
    width: Constants.width
    height: Constants.height

    color: Constants.backgroundColor

    Image {
        id: adventurePage
        x: 0
        y: 0
        source: "images/adventurePage.jpg"
        fillMode: Image.PreserveAspectFit
    }

    Image {
        id: qt_logo_green_128x128px
        x: 296
        y: 0
        source: "images/qt_logo_green_128x128px.png"
        fillMode: Image.PreserveAspectFit
    }
    Text {
        color: "#ffffff"
        text: qsTr("Are you ready to explore?")
        font.pixelSize: 50
        font.family: "Titillium Web ExtraLight"
        anchors.verticalCenterOffset: -430
        anchors.horizontalCenterOffset: 0
        anchors.centerIn: parent
    }

    EntryField {
        id: username
        x: 110
        y: 470
        text: qsTr("Username or Email")
    }

    EntryField {
        id: password
        x: 110
        y: 590
        text: qsTr("Password")
    }

    PushButton {
        id: login
        x: 101
        y: 944
        text: qsTr("Continue")
    }

    PushButton {
        id: creteAccount
        x: 101
        y: 1088
        text: qsTr("Create Account")
    }
}

/*##^##
Designer {
    D{i:0;formeditorZoom:0.5}D{i:1}D{i:2}D{i:3}D{i:4}D{i:5}D{i:6}D{i:7}
}
##^##*/