diff --git a/src/views/AirwaysBill/AddAirwaysBill.js b/src/views/AirwaysBill/AddAirwaysBill.js new file mode 100644 index 0000000..94f54f4 --- /dev/null +++ b/src/views/AirwaysBill/AddAirwaysBill.js @@ -0,0 +1,128 @@ +import React from 'react'; +import { + CButton, + CCard, + CCardBody, + CCardGroup, + CCol, + CContainer, + CForm, + CFormInput, + CFormSelect, + CInputGroup, + CInputGroupText, + CRow, +} from '@coreui/react' +import CIcon from '@coreui/icons-react' +import { cil3d, cilAirplaneMode, cilGlobeAlt, cilLocationPin, cilLockLocked, cilPeople, cilUser } from '@coreui/icons' + + +const AddAirwaysBill = () => { + return
+ + + + +

Add New Bill

+

Fill the fields and submit to add a new bill

+ +

ID:

+
5324756898
+

(auto-generated)

+
+ +

Date:

+
11/11/11
+

(auto-generated)

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Submit + + +
+ +
+
+
+
;; +}; + +export default AddAirwaysBill; diff --git a/src/views/AirwaysBill/AirwaysBill.js b/src/views/AirwaysBill/AirwaysBill.js new file mode 100644 index 0000000..2a4bc24 --- /dev/null +++ b/src/views/AirwaysBill/AirwaysBill.js @@ -0,0 +1,60 @@ +import React from 'react'; +import { + CAvatar, + CButton, + CButtonGroup, + CCard, + CCardBody, + CCardFooter, + CCardHeader, + CCol, + CContainer, + CProgress, + CRow, + CTable, + CTableBody, + CTableDataCell, + CTableHead, + CTableHeaderCell, + CTableRow, +} from '@coreui/react' +import { Link } from 'react-router-dom'; + +const AirwaysBill = () => { + return
+ + + Upload Spreadsheet + + +Add New Entry + +
+ + + + ID + Vendor + Date + To (Name) + AWB + Action + + + + + Mark + 123 + Otto + 123 + Otto + + + View + + + + + +
; +}; + +export default AirwaysBill; diff --git a/src/views/Courier/AddCourier.js b/src/views/Courier/AddCourier.js new file mode 100644 index 0000000..72329fc --- /dev/null +++ b/src/views/Courier/AddCourier.js @@ -0,0 +1,59 @@ +import React from 'react'; +import { + CButton, + CCard, + CCardBody, + CCardGroup, + CCol, + CContainer, + CForm, + CFormInput, + CInputGroup, + CInputGroupText, + CRow, +} from '@coreui/react' +import CIcon from '@coreui/icons-react' +import { cil3d } from '@coreui/icons' + +const AddCourier = () => { + return
+ + + + +

Add New Courier

+

Fill the fields and submit to add a new vendor

+ +
Unique ID:
+
5324756898
+

(auto-generated)

+
+ +
Added On:
+
5324756898
+

(auto-generated)

+
+ + + + + + + + + Submit + + +
+ +
+
+
+
; +}; + +export default AddCourier; diff --git a/src/views/Vendor/AddVendor.js b/src/views/Vendor/AddVendor.js new file mode 100644 index 0000000..b68530f --- /dev/null +++ b/src/views/Vendor/AddVendor.js @@ -0,0 +1,84 @@ +import React from 'react'; +import { + CButton, + CCard, + CCardBody, + CCardGroup, + CCol, + CContainer, + CForm, + CFormInput, + CInputGroup, + CInputGroupText, + CRow, +} from '@coreui/react' +import CIcon from '@coreui/icons-react' +import { cilGlobeAlt, cilLocationPin, cilLockLocked, cilUser } from '@coreui/icons' +import { Link } from 'react-router-dom'; +const AddVendor = () => { + return
+ + + + +

Add New Vendor

+

Fill the fields and submit to add a new vendor

+ +

Code:

+
5324756898
+

(auto-generated)

+
+ + + + + + + + + + + + + + + + + + + + + + + Submit + + +
+ +
+
+
+
; +}; + +export default AddVendor;