-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (73 loc) · 3.34 KB
/
index.html
File metadata and controls
78 lines (73 loc) · 3.34 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login | Nyondo</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous" />
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<div class="container-fluid auth-layout">
<div class="row g-0 auth-row">
<div class="col-md-6 form-pane">
<div class="login-form-area">
<div class="login-mobile-brand">
<img src="./images/Nyondo.png" alt="Nyondo" class="login-mobile-logo" />
</div>
<h3>Welcome back to Nyondo Stock</h3>
<p>
Manage stock, sales, accounts and transport with this powerful
system
</p>
<form>
<div class="container-fluid px-0">
<div class="row g-3">
<div class="col-4">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="role" id="admin" value="admin" />
<label class="form-check-label" for="admin">Accounts/Admin</label>
</div>
</div>
<div class="col-4">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="role" id="storeManager"
value="storeManager" />
<label class="form-check-label" for="storeManager">Store Manager</label>
</div>
</div>
<div class="col-4">
<div class="form-check form-check-inline">
<input class="form-check-input" type="radio" name="role" id="salesAttendant"
value="salesAttendant" />
<label class="form-check-label" for="salesAttendant">Sales Attendant</label>
</div>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email address</label>
<input type="email" class="form-control" id="email" placeholder="name@gmail.com" />
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<input type="password" class="form-control" id="password" placeholder="password" />
</div>
<button class="btn login">Log In</button>
</div>
</div>
</form>
</div>
</div>
<div class="col-md-6 image-pane">
<img src="./images/19368.jpg" class="signup-image" />
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.8/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.8/dist/js/bootstrap.min.js"
integrity="sha384-G/EV+4j2dNv+tEPo3++6LCgdCROaejBqfUeNjuKAiuXbjrxilcCdDz6ZAVfHWe1Y"
crossorigin="anonymous"></script>
</body>
</html>