Skip to content

Commit

Permalink
ch-add-personal-sale-record-page-161168389
Browse files Browse the repository at this point in the history
  • Loading branch information
ebenezerdon committed Oct 25, 2018
1 parent 8dccc6c commit 4c5af3b
Show file tree
Hide file tree
Showing 4 changed files with 123 additions and 6 deletions.
2 changes: 2 additions & 0 deletions UI/assets/css/userdashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ body {

.chart-img {
margin-top: -100px;
width: 250px;
height: 250px;
}

.t-products{
Expand Down
118 changes: 118 additions & 0 deletions UI/pages/personalsalesrecord.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>List of Store Attendants</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="../assets/css/main.css" />
<link rel="stylesheet" href="../assets/css/salesrecord.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
crossorigin="anonymous">
<script src="main.js"></script>
</head>

<body>
<header>
<div class="top-nav">
<div class="logo">
<a href="userdashboard.html"><i class="far fa-user-circle"></i></a>
<a href="admindashboard.html"><i class="far fa-user-circle"></i></a>
</div>
<a href="#"><i class="far fa-user-circle"></i></a>
<a href="#"><i class="far fa-bell"></i></a>
<p>Hello, <span id="name">Josh</span></p>
</div>
<div class="nav-2">
<div class="option-select">
</div>
<div class="wrap">
<div class="search">
<input type="text" class="searchTerm" placeholder="Search">
<button type="submit" class="searchButton">
<div class="icon"><i class="fa fa-search"></i></div>
</button>
</div>
</div>
</div>
</header>

<main>
<div class="caption">Sales Record</div>
<div class="table">
<div class="header-row row">
<span class="cell primary">Date</span>
<span class="cell">Name of Product</span>
<span class="cell">Quantity</span>
<span class="cell">Unit Price</span>
<span class="cell">Attendant</span>
</div>
<div class="row">
<input type="radio" name="expand">
<span class="cell primary" data-label="Date">8th July, 2018</span>
<span class="cell" data-label="NameOfProduct">
<a href="product-item.html">Long Sleeve Hooded T Shirt</a>
</span>
<span class="cell" data-label="Quantity">3</span>
<span class="cell" data-label="UnitPrice">₦3,300</span>
<span class="cell" data-label="Attendant">
<a href="userdashboard.css">Josh Odogwu</a>
</span>
</div>
<div class="row">
<input type="radio" name="expand">
<span class="cell primary" data-label="Date">8th July, 2018</span>
<span class="cell" data-label="NameOfProduct">
<a href="product-item.html">Long Sleeve Hooded T Shirt</a>
</span>
<span class="cell" data-label="Quantity">3</span>
<span class="cell" data-label="UnitPrice">₦3,300</span>
<span class="cell" data-label="Attendant">
<a href="userdashboard.css">Josh Odogwu</a>
</span>
</div>
<div class="row">
<input type="radio" name="expand">
<span class="cell primary" data-label="Date">8th July, 2018</span>
<span class="cell" data-label="NameOfProduct">
<a href="product-item.html">Long Sleeve Hooded T Shirt</a>
</span>
<span class="cell" data-label="Quantity">3</span>
<span class="cell" data-label="UnitPrice">₦3,300</span>
<span class="cell" data-label="Attendant">
<a href="userdashboard.css">Josh Odogwu</a>
</span>
</div>
<div class="row">
<input type="radio" name="expand">
<span class="cell primary" data-label="Date">8th July, 2018</span>
<span class="cell" data-label="NameOfProduct">
<a href="product-item.html">Long Sleeve Hooded T Shirt</a>
</span>
<span class="cell" data-label="Quantity">3</span>
<span class="cell" data-label="UnitPrice">₦3,300</span>
<span class="cell" data-label="Attendant">
<a href="userdashboard.css">Josh Odogwu</a>
</span>
</div>
<div class="row">
<input type="radio" name="expand">
<span class="cell primary" data-label="Date">8th July, 2018</span>
<span class="cell" data-label="NameOfProduct">
<a href="product-item.html">Long Sleeve Hooded T Shirt</a>
</span>
<span class="cell" data-label="Quantity">3</span>
<span class="cell" data-label="UnitPrice">₦3,300</span>
<span class="cell" data-label="Attendant">
<a href="userdashboard.css">Josh Odogwu</a>
</span>
</div>

</div>
</main>

<footer></footer>
</body>

</html>
6 changes: 0 additions & 6 deletions UI/pages/salesrecord.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,6 @@
</div>
<div class="nav-2">
<div class="option-select">
<div class="user-select">
<select>
<option>Dashboard</option>
<option>Products</option>
</select>
</div>
</div>
<div class="wrap">
<div class="search">
Expand Down
3 changes: 3 additions & 0 deletions UI/pages/userdashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ <h3>Top Products</h3>
<p>Total Worth of Goods sold</p>
<span>₦125,000</span>
</div>
<a href="personalsalesrecord.html" class="green-button">See All Sales Record</a>
</div>
</div>

</div>
</div>
Expand Down

0 comments on commit 4c5af3b

Please sign in to comment.