diff options
-rw-r--r-- | SignInFlickable.ui.qml | 59 |
1 files changed, 34 insertions, 25 deletions
diff --git a/SignInFlickable.ui.qml b/SignInFlickable.ui.qml index 40a9bd2..30d3c8f 100644 --- a/SignInFlickable.ui.qml +++ b/SignInFlickable.ui.qml @@ -5,40 +5,49 @@ import QtQuick.Layouts 1.15 GridLayout { ColumnLayout { + Layout.margins: 15 ColumnLayout { - Label { - text: qsTr("Email address *") - } - RowLayout { - Image { - id: envelope - source: "Bootstrap/icons/envelope-fill.svg" + + ColumnLayout { + Label { + text: qsTr("Email address *") } - TextField { - placeholderText: qsTr("E-mail") - Layout.fillWidth: true + RowLayout { + Image { + id: envelope + source: "Bootstrap/icons/envelope-fill.svg" + } + TextField { + placeholderText: qsTr("E-mail") + Layout.fillWidth: true + } } } - } - ColumnLayout { - Label { - text: qsTr("Password *") - } - RowLayout { - Image { - source: "Font-Awesome/svgs/solid/lock.svg" - sourceSize { - width: envelope.height - height: envelope.height - } + ColumnLayout { + Label { + text: qsTr("Password *") } - TextField { - placeholderText: qsTr("password") - Layout.fillWidth: true + RowLayout { + Image { + source: "Font-Awesome/svgs/solid/lock.svg" + sourceSize { + width: envelope.height + height: envelope.height + } + } + TextField { + placeholderText: qsTr("password") + Layout.fillWidth: true + } } } + + Button { + text: qsTr("Login") + Layout.fillWidth: true + } } } } |