-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstaff.html
48 lines (47 loc) · 1.93 KB
/
staff.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/staff.css" />
<title>Log Staff in</title>
</head>
<body>
<a href="/index.html"><h1>Anjie<span style="color:rgb(126, 48, 106)">Stores</span></h1></a>
<div class="container">
<div>
<form action="#">
<div class="user-details">
<div class="input-box">
<span><b>Surname</b></span>
<input type="text" placeholder="Enter your name" id="">
</div>
<div class="input-box">
<span><b>First Name</b></span>
<input type="text" placeholder="Enter your staff number" id="">
</div>
<div class="input-box">
<span><b>Staff Level</b></span>
<select name="digits" id="digits">
<option value="Groceries">Groceries</option>
<option value="Toiletries">Toiletries</option>
</select>
</div>
<div class="input-box">
<span><b>State of Origin</b></span>
<input type="text" placeholder="Enter your quantity" min="10">
</div>
<div class="input-box">
<span><b>Birthdate</b></span>
<input type="date" placeholder="Enter your quantity" min="10">
</div>
<div class="order-button">
<a href="/index.html#User_management">Submit</a>
</div>
</div>
</form>
</div>
</div>
</body>
</html>