diff --git a/src/main/java/tech/iBeans/POSware/Lite/OnPayment.form b/src/main/java/tech/iBeans/POSware/Lite/OnPayment.form
new file mode 100644
index 0000000..a204072
--- /dev/null
+++ b/src/main/java/tech/iBeans/POSware/Lite/OnPayment.form
@@ -0,0 +1,103 @@
+
+
+
diff --git a/src/main/java/tech/iBeans/POSware/Lite/OnPayment.java b/src/main/java/tech/iBeans/POSware/Lite/OnPayment.java
new file mode 100644
index 0000000..a3bc196
--- /dev/null
+++ b/src/main/java/tech/iBeans/POSware/Lite/OnPayment.java
@@ -0,0 +1,88 @@
+/*
+ * Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
+ * Click nbfs://nbhost/SystemFileSystem/Templates/GUIForms/JPanel.java to edit this template
+ */
+package tech.iBeans.POSware.Lite;
+
+/**
+ *
+ * @author eleven
+ */
+public class OnPayment extends javax.swing.JPanel {
+
+ /**
+ * Creates new form OnPayment
+ */
+ public OnPayment() {
+ initComponents();
+ }
+
+ /**
+ * This method is called from within the constructor to initialize the form.
+ * WARNING: Do NOT modify this code. The content of this method is always
+ * regenerated by the Form Editor.
+ */
+ @SuppressWarnings("unchecked")
+ // //GEN-BEGIN:initComponents
+ private void initComponents() {
+
+ jPanel_actions = new javax.swing.JPanel();
+ jButton_action_cancel = new javax.swing.JButton();
+ jButton_action_continue = new javax.swing.JButton();
+ jPanel_information = new javax.swing.JPanel();
+ jLabel_information_total = new javax.swing.JLabel();
+ jTextField_information_total_value = new javax.swing.JTextField();
+ jPanel1 = new javax.swing.JPanel();
+
+ setLayout(new java.awt.BorderLayout());
+
+ jButton_action_cancel.setText("Cancel");
+ jButton_action_cancel.setActionCommand("action_cancel");
+ jPanel_actions.add(jButton_action_cancel);
+
+ jButton_action_continue.setText("Complete Transaction");
+ jButton_action_continue.setActionCommand("action_continue");
+ jPanel_actions.add(jButton_action_continue);
+
+ add(jPanel_actions, java.awt.BorderLayout.PAGE_END);
+
+ jPanel_information.setLayout(new java.awt.BorderLayout());
+
+ jLabel_information_total.setText("Total");
+ jPanel_information.add(jLabel_information_total, java.awt.BorderLayout.WEST);
+
+ jTextField_information_total_value.setEditable(false);
+ jTextField_information_total_value.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
+ jTextField_information_total_value.setText("0");
+ jTextField_information_total_value.setFocusable(false);
+ jTextField_information_total_value.setMinimumSize(new java.awt.Dimension(30, 26));
+ jTextField_information_total_value.setRequestFocusEnabled(false);
+ jPanel_information.add(jTextField_information_total_value, java.awt.BorderLayout.CENTER);
+
+ add(jPanel_information, java.awt.BorderLayout.PAGE_START);
+
+ javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
+ jPanel1.setLayout(jPanel1Layout);
+ jPanel1Layout.setHorizontalGroup(
+ jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
+ .addGap(0, 400, Short.MAX_VALUE)
+ );
+ jPanel1Layout.setVerticalGroup(
+ jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
+ .addGap(0, 240, Short.MAX_VALUE)
+ );
+
+ add(jPanel1, java.awt.BorderLayout.CENTER);
+ }// //GEN-END:initComponents
+
+
+ // Variables declaration - do not modify//GEN-BEGIN:variables
+ private javax.swing.JButton jButton_action_cancel;
+ private javax.swing.JButton jButton_action_continue;
+ private javax.swing.JLabel jLabel_information_total;
+ private javax.swing.JPanel jPanel1;
+ private javax.swing.JPanel jPanel_actions;
+ private javax.swing.JPanel jPanel_information;
+ private javax.swing.JTextField jTextField_information_total_value;
+ // End of variables declaration//GEN-END:variables
+}