diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-05 11:16:04 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-05 11:16:04 +0800 |
commit | aedcbd11f03979ac3d8caa16dcd72be1bbd82e07 (patch) | |
tree | 397b71750b11f9742fbca543f8be91ad16f3aef6 /pages/PasswordForm.ui.qml | |
parent | 91619372151514a5cdcc686f15ea00c574d55cc1 (diff) |
Reuse password form for password confirmation
Diffstat (limited to 'pages/PasswordForm.ui.qml')
-rw-r--r-- | pages/PasswordForm.ui.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pages/PasswordForm.ui.qml b/pages/PasswordForm.ui.qml index 7b9ee46..95b88b3 100644 --- a/pages/PasswordForm.ui.qml +++ b/pages/PasswordForm.ui.qml @@ -1,5 +1,5 @@ import QtQuick 2.12 -import QtQuick.Layouts 1.3 +import QtQuick.Layouts 1.12 import QtQuick.Controls 2.12 import QtQuick.Controls.Material 2.12 @@ -9,6 +9,8 @@ Rectangle { border.width: 0 property alias backButton: backButton + property alias instructionLabel: instructionLabel + property alias userEmail: userEmail property alias passTextField: passTextField property alias createPassButton: createPassButton property alias emailAddressLabel: emailAddressLabel @@ -41,6 +43,7 @@ Rectangle { } Label { + id: instructionLabel x: 16 y: 232 color: "#2b2626" |