-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsellerhome.html
More file actions
334 lines (288 loc) · 10.3 KB
/
sellerhome.html
File metadata and controls
334 lines (288 loc) · 10.3 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
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
<html>
<head>
<title>From My Kitchen : Seller</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="stylee.css">
<style>
* {
margin: 0px;
padding: 0px;
}
.logo img {
height: 15rem;
width: 15rem;
justify-content: center;
border-radius: 50%;
}
body {
font-family: Ariel, Helvetica, sans-serif;
/* background-color: rgb(0, 0, 0); */
color: white;
line-height: 1.6;
text-align: center;
}
.firstcontainer {
max-width: 960px;
margin: auto;
padding: 0 30px;
font-weight: 500;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
#showcase {
height: 200px;
}
#showcase h1 {
font-size: 50px;
line-height: 1.3;
position: relative;
animation: heading;
animation-duration: 3s;
animation-fill-mode: forwards;
}
@keyframes heading {
0% {
top: -100px;
}
100% {
top: 70px;
}
}
#content {
position: relative;
font-size: x-large;
animation-name: content;
animation-duration: 3s;
animation-fill-mode: forwards;
}
@keyframes content {
0% {
left: -1000px;
}
100% {
left: 0px;
}
}
.readbtn {
font-weight: 600;
font-size: large;
background: #000e14;
display: inline-block;
color: rgb(253, 251, 251);
text-decoration: none;
padding: 1rem 1rem 1rem 1rem;
border: rgb(0, 0, 0) 1px solid;
margin-top: 20px;
opacity: 0;
animation-name: readbtn;
animation-duration: 3s;
animation-delay: 3s;
animation-fill-mode: forwards;
transition-property: transform;
transition-duration: 1s;
}
.readbtn:hover {
transform: rotateY(360deg);
color: yellow;
}
@keyframes readbtn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}
.container {
transform-style: preserve-3d;
}
.container .boxxi {
position: relative;
width: 300px;
height: 300px;
margin: 20px;
transform-style: preserve-3d;
perspective: 1000px;
cursor: pointer;
}
.container .boxxi .body {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform-style: preserve-3d;
transition: 0.9s ease;
}
.container .boxxi .body .imgContainer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
transform-style: preserve-3d;
}
.container .boxxi .body .imgContainer img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.container .boxxi .body .content {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #333;
backface-visibility: hidden;
transform-style: preserve-3d;
transform: rotateY(180deg);
}
.container .boxxi:hover .body {
transform: rotateY(180deg);
}
.container .boxxi .body .content div {
transform-style: preserve-3d;
padding: 20px;
background: black;
transform: translateZ(100px);
}
.container .boxxi .body .content div h3 {
letter-spacing: 1px;
}
#about-section {
margin-top: 6rem;
}
.nav-seller{
background-color: #000e14;
display: flex;
justify-content: flex-end;
align-items: flex-end;
}
.seller-login-nav{
padding-top: 0.8em;
display: inline-flex;
padding-bottom: 0.8em;
gap: 2rem;
margin-right: 3em;
}
.seller-login-nav li a{
text-decoration: none;
color: white;
}
</style>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<nav class="nav-seller">
<ul class="seller-login-nav">
<li><a href="index.html">Home</a></li>
<li> <a href="#sellerr">Login/Register</a></li>
</ul>
</nav>
<div class="logo">
<img src="20230702_172710_0000.png" alt="">
</div>
<div class="topbox">
<header id="showcase">
<h1>From My Kitchen</h1>
</header>
<div id="content" class="firstcontainer">
We genuinely believe that your homemade food items would be an excellent addition to our platform. Let us
join forces and create a prosperous partnership where your food items can shine and thrive in our vibrant
website.
</div>
</div>
<section id="about-section">
<h1 class="fst-bold p-4">Why become a Seller??</h1>
<div class="container d-flex align-items-center justify-content-center flex-wrap">
<div class="boxxi">
<div class="body">
<div class="imgContainer">
<img src="sharing caring.gif" alt="">
</div>
<div class="content d-flex flex-column align-items-center justify-content-center">
<div>
<h3 class="text-white fs-2 fst-italic text-center">Sharing=Caring</h3>
<p class="fs-6 text-white">When we share our meals with others, we open ourselves up to a
world of connection and generosity.Through the act of sharing food, we can spread love,
joy, and nourishment to those around us. </p>
</div>
</div>
</div>
</div>
<div class="boxxi">
<div class="body">
<div class="imgContainer">
<img src="cooking-at-home.gif" alt="">
</div>
<div class="content d-flex flex-column align-items-center justify-content-center">
<div>
<h3 class="text-white fs-2 fst-italic text-center">Boost Self Esteem</h3>
<p class="fs-6 text-white">The homemakers on getting appreciative feedback for a particular
meal can really enjoy a boost in their self esteem.</p>
</div>
</div>
</div>
</div>
<div class="boxxi">
<div class="body">
<div class="imgContainer">
<img src="money-unscreen.gif" alt="">
</div>
<div class="content d-flex flex-column align-items-center justify-content-center">
<div>
<h3 class="text-white fs-2 fst-italic text-center">Enjoy Little Earnings</h3>
<p class="fs-6 text-white">Little income can result a change in human satisfaction and
motivate to keep working.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="sellerr">
<div class="box">
<img src="food.gif">
<div class="page">
<div class="header">
<a id="login" class="active" href="#login">login</a>
<a id="signup" href="#signup">signup</a>
</div>
<div id="errorMsg"></div>
<div class="content">
<form class="login" name="loginForm" method="POST">
<input type="text" name="name" id="logName" placeholder="Username">
<input type="password" name="password" id="logPassword" placeholder="Password">
<br><br>
<button type="button" class="seller-login-button" onclick="validateLoginForm()">Login</button>
</form>
<form class="signup" name="signupForm" onsubmit="return validateSignupForm()" method="POST">
<input type="email" name="email" id="signEmail" placeholder="Email">
<input type="text" name="name" id="signName" placeholder="Username">
<input type="password" name="password" id="signPassword" placeholder="Password"><br>
<input type="submit" value="SignUp">
</form>
</div>
</div>
</div>
</section>
<footer>
<div class="center">
Copyright © www.FromMyKitchen.com. All rights reserved!
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="loginforseller.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF"
crossorigin="anonymous"></script>
</body>
</html>