-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.html
201 lines (189 loc) · 4.8 KB
/
Home.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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ERP Store</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Poppins', sans-serif;
}
.wrapper {
width: 1170px;
margin: auto;
}
header {
background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url(Back.jpg);
height: 100vh;
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
position: relative;
}
.nav-area {
float: right;
list-style: none;
margin-top: 30px;
}
.nav-area li {
display: inline-block;
}
.nav-area li a {
color: #fff;
text-decoration: none;
padding: 5px 20px;
font-family: poppins;
font-size: 16px;
text-transform: uppercase;
}
.nav-area li a:hover {
background: #fff;
color: #333;
}
.logo {
float: left;
}
.logo img {
width: 100%;
padding: 15px 0;
}
.welcome-text {
position: absolute;
width: 600px;
height: 300px;
margin: 20% 30%;
text-align: center;
}
.welcome-text h1 {
text-align: center;
color: #fff;
text-transform: uppercase;
font-size: 40px;
}
.welcome-text h1 span {
color: #00fecb;
}
.welcome-text a {
border: 1px solid #fff;
padding: 10px 25px;
text-decoration: none;
text-transform: uppercase;
font-size: 14px;
margin-top: 20px;
display: inline-block;
color: #fff;
}
.welcome-text a:hover {
background: #fff;
color: #333;
}
/*resposive*/
@media (max-width:600px) {
.wrapper {
width: 100%;
}
.logo {
float: left;
width: 20%;
text-align: center;
margin: auto;
}
img {
width: ;
}
.nav-area {
float: none;
margin-top: 0;
}
.nav-area li a {
padding: 5px;
font-size: 11px;
}
.nav-area {
text-align: center;
}
.welcome-text {
width: 90%;
height: auto;
margin: 30% 0;
}
.welcome-text h1 {
font-size: 30px;
}
}
.Btn{
display: inline-block;
color: #fff;
text-decoration: none;
padding: 5px 20px;
font-family: poppins;
font-size: 16px;
text-transform: uppercase;
background: #fff;
color: #333;
}
span.ps {
padding-top: 16px;
}
.about{
background-color:black;
color:white;
}
.erp{
width: 15%;
height: auto;
opacity: 10;
}
p{
align:center;
}
</style>
</head>
<body>
<header>
<div class="wrapper">
<div class="logo">
</div>
<ul class="nav-area">
<li><a href="ulogin.html">Log in</a></li>
<li><button onclick="document.getElementById('id01').style.display='block'" class="Btn">About</button></li>
<li><a href="Admin/Admin Login.php">Admin</a></li>
</ul>
</div>
<div class="welcome-text">
<h1>ERP for
<span>Micro enterprise </span></h1>
<a href="register.html">SignUP</a>
</div>
</header>
<div id="id01" class="w3-modal">
<div class="w3-modal-content">
<div class="about">
<span onclick="document.getElementById('id01').style.display='none'" class="w3-button w3-display-topright">×</span>
<h1> About ERP</h1></br>
<img src ="ERPpic.webp" class="erp"></br></br>
<p> ERP establishes venture asset arranging.
The fundamental idea is to guarantee that the assets valuable for the endeavor and to rattle off the vital ideas of the functionalities in them. Anticipating gathering reports to set up a marketing chart.</p>
<h2> Billing Counter employees</h2>
<img src = "./Admin/msg.png" alt= 'user' class="erp">
<p> The primary and essential task for them is to file a daily report in the form of bill for all the products that is used for billing from the inventory.
and they would upload the report so the admin can see it. so this is so far the task. But all the employees get a interface where they have a counter id for any operation i.e., updation and billing reports.</p>
<h3> Admin</h3>
<img src = "./Admin/Admin.jpg" alt= 'user' class="erp">
<p> The Admin has multiple functionalities.which includes </p>
<p> 1)Managing Inventory:- which means that products can be added and removed upon his decision in the store. </p>
<p> 2)Managing Products availability :- The main plan for the store is to plan their resources before it everything goes away in the inventory. </p>
<p> 3)Manage employees :- The employee registered cannot be logged in without admin authority approval. </p>
<p> 4)View all reports :- There may be many reports that is filed on daily basis for the usage of inventory items based on their billing.</p>
</div>
</div>
</div>
</div>
</body>
</html>