diff options
author | Anatasof Wirapraja <anata@darapsa.co.id> | 2021-07-19 22:21:57 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anata@darapsa.co.id> | 2021-07-19 22:21:57 +0700 |
commit | f954e34d87892ec6990e7b9357b4a888d9c1dab2 (patch) | |
tree | 2aa81f7a7a22368433b89a56663a27e1f8a8cd5b | |
parent | fad001ca0a9781865d00dca92d464958e3fa0b8f (diff) |
Initial commit page/member/account
-rw-r--r-- | pages/member/account.html | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/pages/member/account.html b/pages/member/account.html new file mode 100644 index 0000000..a8e60f1 --- /dev/null +++ b/pages/member/account.html @@ -0,0 +1,62 @@ +@_TOP_@ +<!-- BEGIN CONTENT --> +<div class="container p-4"> + <!-- Hero Section--> + <div class="py-2"> + <h1>[L]Account[/L]</h1> + [if session logged_in] + [edisplay show_label=1 show_var=0 keep=1] + </div> + <!-- End Hero section--> + <!-- Orders Section--> + <section> + <div class="container"> + <div> + <table class="table table-borderless table-hover table-responsive-md"> + <thead class="bg-light"> + <tr> + <th class="py-4 text-uppercase text-sm">Order #</th> + <th class="py-4 text-uppercase text-sm">Date</th> + <th class="py-4 text-uppercase text-sm">Total</th> + <th class="py-4 text-uppercase text-sm">Status</th> + <th class="py-4 text-uppercase text-sm">Action</th> + </tr> + </thead> + <tbody> + <tr> + <th class="py-4 align-middle">#12345</th> + <td class="py-4 align-middle">22/6/2017</td> + <td class="py-4 align-middle">Rp150.000,00</td> + <td class="py-4 align-middle"><span class="badge p-2 text-uppercase badge-info">Being prepared</span></td> + <td class="py-4 align-middle"><a class="btn btn-outline-dark btn-sm" href="customer-order.html">View</a></td> + </tr> + <tr> + <th class="py-4 align-middle"># 1734</th> + <td class="py-4 align-middle">7/5/2017</td> + <td class="py-4 align-middle">Rp150.000,00</td> + <td class="py-4 align-middle"><span class="badge p-2 text-uppercase badge-warning">Action needed</span></td> + <td class="py-4 align-middle"><a class="btn btn-outline-dark btn-sm" href="customer-order.html">View</a></td> + </tr> + <tr> + <th class="py-4 align-middle"># 1730</th> + <td class="py-4 align-middle">30/9/2016</td> + <td class="py-4 align-middle">Rp150.000,00</td> + <td class="py-4 align-middle"><span class="badge p-2 text-uppercase badge-success">Received</span></td> + <td class="py-4 align-middle"><a class="btn btn-outline-dark btn-sm" href="customer-order.html">View</a></td> + </tr> + <tr> + <th class="py-4 align-middle"># 1705</th> + <td class="py-4 align-middle">22/6/2016</td> + <td class="py-4 align-middle">Rp150.000,00</td> + <td class="py-4 align-middle"><span class="badge p-2 text-uppercase badge-danger">Cancelled</span></td> + <td class="py-4 align-middle"><a class="btn btn-outline-dark btn-sm" href="customer-order.html">View</a></td> + </tr> + </tbody> + </table> + </div> + </div> + </section> + <!-- Orders Section --> +</div> + +__BOTTOM__
\ No newline at end of file |