-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (126 loc) · 4.45 KB
/
index.html
File metadata and controls
134 lines (126 loc) · 4.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./salesReg.css" />
<style></style>
</head>
<body>
<div class="container">
<div class="sidebar">
<div class="profile">
<div class="profile-image"></div>
<div class="profile-information">
<span class="profile-name">Your full name</span>
<span class="profile-role">Role in the system</span>
</div>
</div>
<div class="navigation">
<a href="./dashboard.html">Dashboard</a>
</div>
<div class="navigation">
<a href="./salesRegistration.html">Sales Management</a>
</div>
<div class="navigation">
<a href="./supplierRegistration.html">Supplier Management</a>
</div>
<div class="navigation">
<a href="./stock.html">Stock Management</a>
</div>
<div class="navigation">
<a href="./transportRegistration.html">Transport Management</a>
</div>
</div>
<div class="content">
<form action="">
<!-- Sales registration-->
<section>
<h2>Sales Registration</h2>
<div class="input-container">
<div class="input-section">
<label for="salesDate">Sales Date</label>
<input type="date" />
</div>
<div class="input-section">
<label for="salesPerson">Sales Person</label>
<select name="">
<option value="" disabled selected>
Select a representative
</option>
<option value="1">Kenechekwu Matilda</option>
<option value="2">Osia Jeremy</option>
</select>
</div>
<div class="input-section"></div>
</div>
</section>
<!-- Customer Details -->
<section>
<h2>Customer Details</h2>
<div class="input-container">
<div class="input-section">
<label for="name">Name</label>
<input type="text" placeholder="Enter full name" />
</div>
<div class="input-section">
<label for="phone">Phone Number</label>
<input type="tel" placeholder="Enter Phone Number" />
</div>
<div class="input-section">
<label for="email">Email</label>
<input type="email" placeholder="Enter email" />
</div>
<div class="input-section">
<label for="name">Customer Type</label>
<select name="">
<option disabled selected>Select customer type</option>
<option value="returning">Wholesale</option>
<option value="firstTime">Retail</option>
</select>
</div>
</div>
</section>
<!-- Items -->
<section>
<h2>Items</h2>
<div class="input-container">
<div class="input-section">
<label for="pdtId">Pdt Id</label>
<input type="text" />
</div>
<div class="input-section">
<label for="quantity">Quantity</label>
<input type="number" />
</div>
<div class="input-section">
<label for="price">Unit Price</label>
<input type="number" />
</div>
<div class="input-section">
<label for="pdtId">Pdt Id</label>
<input type="text" />
</div>
<div class="input-section">
<label for="quantity">Quantity</label>
<input type="number" />
</div>
<div class="input-section">
<label for="price">Unit Price</label>
<input type="number" />
</div>
</div>
</section>
<!-- Buttons -->
<section>
<div class="buttons">
<button type="cancel" class="cancel-button">Cancel</button>
<button type="submit" class="submit-button">Submit</button>
</div>
</section>
</form>
</div>
</div>
</body>
</html>