From 8a1fa06ceffe441f432c8ffd1fb15b8103c0db83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Tue, 17 Jan 2023 22:07:57 +0800 Subject: Payment method draft Starting with "Pay with Net Banking" --- CheckoutFlickable.ui.qml | 54 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/CheckoutFlickable.ui.qml b/CheckoutFlickable.ui.qml index e22083b..9923b07 100644 --- a/CheckoutFlickable.ui.qml +++ b/CheckoutFlickable.ui.qml @@ -154,5 +154,59 @@ Flickable { columnSpacing: 0 rowSpacing: 0 } + + ColumnLayout { + Label { + text: qsTr("Payment method") + Layout.fillWidth: true + } + ColumnLayout { + Frame { + Layout.fillWidth: true + ColumnLayout { + anchors.fill: parent + Label { + text: qsTr("Credit or Debit Card") + Layout.fillWidth: true + } + } + } + Frame { + Layout.fillWidth: true + ColumnLayout { + anchors.fill: parent + Label { + text: qsTr("Pay with Net Banking") + Layout.fillWidth: true + } + ColumnLayout { + Label { + text: qsTr("In order to complete your transaction, we will transfer you over to Eduport secure servers. ") + Layout.fillWidth: true + wrapMode: Text.Wrap + } + Label { + text: qsTr("Select your bank from the drop-down list and click proceed to continue with your payment.") + Layout.fillWidth: true + wrapMode: Text.Wrap + } + ComboBox { + model: ListModel { + ListElement { + text: "Bank of America" + } + ListElement { + text: "Bank of India" + } + ListElement { + text: "Bank of London" + } + } + } + } + } + } + } + } } } -- cgit v1.2.3