-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRecipeplatform.html
More file actions
454 lines (401 loc) · 13.3 KB
/
Recipeplatform.html
File metadata and controls
454 lines (401 loc) · 13.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
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FOODSRUS — the Ultimate Recipe Sharing and Receiving Platform--</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background: url('background.jpg') no-repeat center center fixed;
background-size: cover;
animation: fadeIn 2s ease-in;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
header {
text-align: center;
background-color: rgba(255, 255, 255, 0.9);
padding: 20px;
}
.site-title {
font-size: 32px;
font-weight: bold;
margin: 0;
}
.site-subtitle {
font-size: 18px;
font-family: "Brush Script MT", cursive, "Lucida Handwriting", sans-serif;
margin-top: 5px;
color: #555;
}
.hamburger {
font-size: 30px;
cursor: pointer;
position: absolute;
top: 20px;
left: 20px;
display: none;
}
.nav-links {
position: absolute;
top: 70px;
left: 0;
width: 200px;
background: rgba(255, 255, 255, 0.95);
border-right: 1px solid #ccc;
display: none;
flex-direction: column;
padding: 10px;
}
.nav-links a {
margin: 10px 0;
text-decoration: none;
color: #333;
font-weight: bold;
cursor: pointer;
}
#loginPage {
background: url('loginimage.png') no-repeat center center;
background-size: cover;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.center-login,
.center-signup {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 80vh;
}
.form-box {
background: linear-gradient(to bottom right, white, #ff0000);
padding: 30px;
border-radius: 8px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
text-align: center;
width: 300px;
}
.form-box input,
.form-box select {
padding: 10px;
width: 90%;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
}
.form-box button {
padding: 10px 20px;
background-color: #ff6600;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.form-box a {
color: #007BFF;
font-size: 14px;
text-decoration: none;
display: block;
margin-top: 10px;
}
footer {
background-color: rgba(0, 0, 0, 0.7);
color: white;
text-align: center;
padding: 10px;
position: fixed;
width: 100%;
bottom: 0;
}
.main-background {
background-color: #f0f8ff;
padding: 20px;
min-height: 100vh;
}
h2.title {
margin-bottom: 20px;
text-align: center;
color: #333;
}
#submitRecipe input,
#submitRecipe textarea,
#submitRecipe select {
padding: 10px;
margin-bottom: 15px;
border-radius: 5px;
border: 1px solid #ccc;
width: 100%;
box-sizing: border-box;
}
/* Make recipe titles clickable */
.recipe-title {
cursor: pointer;
color: blue;
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<div class="hamburger" id="hamburgerMenu" onclick="toggleMenu()">☰</div>
<div>
<h1 class="site-title">FOODSRUS</h1>
<div class="site-subtitle">— the Ultimate Recipe Sharing and Receiving Platform--</div>
</div>
</header>
<div class="nav-links" id="navLinks">
<a onclick="showPage('myRecipes')">My Recipes</a>
<a onclick="showPage('allRecipes')">All Recipes</a>
<a onclick="showPage('submitRecipe')">Submit Recipe</a>
<a onclick="showPage('userProfile')">Profile</a>
<a onclick="logout()">Logout</a>
</div>
<div class="center-login" id="loginPage">
<div class="form-box">
<h2 class="title">User Login</h2>
<form id="loginForm">
<input type="text" id="loginUsername" placeholder="Username" required />
<input type="password" id="loginPassword" placeholder="Password" required />
<button type="submit">Login</button>
<a href="#" onclick="showSignup()">Don't have an account? Sign up</a>
</form>
</div>
</div>
<div class="center-signup" id="signupPage" style="display:none">
<div class="form-box">
<h2 class="title">User Signup</h2>
<form id="signupForm">
<input type="text" id="signupUsername" placeholder="Choose Username" required />
<input type="password" id="signupPassword" placeholder="Choose Password" required />
<button type="submit">Sign Up</button>
<a href="#" onclick="showLogin()">Already have an account? Login</a>
</form>
</div>
</div>
<div class="main-background" style="display:none" id="myRecipes">
<h2 class="title">My Recipes</h2>
<div id="userRecipeList"></div>
</div>
<div class="main-background" style="display:none" id="allRecipes">
<h2 class="title">All Users' Recipes</h2>
<div id="allRecipeList"></div>
</div>
<div class="main-background" style="display:none" id="submitRecipe">
<h2 class="title">Submit a New Recipe</h2>
<form id="recipeForm" style="max-width: 600px; margin: auto;">
<input type="text" id="recipeTitle" placeholder="Recipe Title" required><br>
<textarea id="recipeIngredients" placeholder="Ingredients (comma-separated)" rows="4" required></textarea><br>
<textarea id="recipeInstructions" placeholder="Instructions" rows="5" required></textarea><br>
<input type="text" id="recipeTags" placeholder="Tags (e.g., vegan, gluten-free)" required><br>
<input type="text" id="recipeCuisine" placeholder="Cuisine / Meal Type (e.g., Italian, Dessert)" required><br>
<input type="text" id="cookingTime" placeholder="Cooking Time (e.g., 45 minutes)" required><br>
<select id="difficulty" required>
<option value="">Select Difficulty</option>
<option value="Easy">Easy</option>
<option value="Medium">Medium</option>
<option value="Hard">Hard</option>
</select><br><br>
<input type="file" id="recipeImage" accept="image/*"><br><br>
<button type="submit">Submit Recipe</button>
</form>
</div>
<div class="main-background" style="display:none" id="userProfile">
<h2 class="title">User Profile</h2>
<div id="profileInfo"></div>
<h3>Saved Recipes</h3>
<div id="savedRecipeList"></div>
</div>
<footer>
<p>© 2025 FOODSRUS | All Rights Reserved</p>
</footer>
<script>
const users = JSON.parse(localStorage.getItem("users")) || {};
let currentUser = null;
function saveUsers() {
localStorage.setItem("users", JSON.stringify(users));
}
document.getElementById("loginForm").addEventListener("submit", function(event) {
event.preventDefault();
const username = loginUsername.value;
const password = loginPassword.value;
if (users[username] && users[username].password === password) {
currentUser = username;
loginSuccess();
} else {
alert("Invalid credentials or account doesn't exist.");
}
});
document.getElementById("signupForm").addEventListener("submit", function(event) {
event.preventDefault();
const username = signupUsername.value;
const password = signupPassword.value;
if (users[username]) {
alert("Username already exists. Try another.");
} else {
users[username] = {
password,
recipes: [],
saved: [],
ratings: []
};
saveUsers();
alert("Signup successful! You can now log in.");
showLogin();
}
});
function loginSuccess() {
hideAllPages();
showPage('allRecipes');
hamburgerMenu.style.display = "block";
renderUserProfile();
renderRecipes();
}
function logout() {
currentUser = null;
hideAllPages();
showLogin();
hamburgerMenu.style.display = "none";
navLinks.style.display = "none";
}
// Render all recipes and attach click handlers to titles to show details
function renderRecipes() {
const all = Object.entries(users).flatMap(([username, user]) =>
user.recipes.map((r, i) =>
`<div>
<h4 class="recipe-title" onclick="showRecipeDetails('${username}', ${i})">${r.title}</h4>
<button onclick="saveRecipe('${username}', ${i})">Save</button>
${
username === currentUser
? `<button onclick="deleteOwnRecipe('${username}', ${i})">Delete</button>`
: ''
}
</div>`
)
);
document.getElementById("allRecipeList").innerHTML = all.join("");
// My Recipes list clickable titles
document.getElementById("userRecipeList").innerHTML = users[currentUser].recipes.map((r, i) =>
`<div><h4 class="recipe-title" onclick="showRecipeDetails('${currentUser}', ${i})">${r.title}</h4></div>`
).join("");
// Saved Recipes list clickable titles + delete button
document.getElementById("savedRecipeList").innerHTML = users[currentUser].saved.map((r, i) =>
`<div>
<h4 class="recipe-title" onclick="showRecipeDetailsSaved(${i})">${r.title}</h4>
<button onclick="deleteSavedRecipe(${i})">Delete</button>
</div>`
).join("");
}
function renderUserProfile() {
const user = users[currentUser];
document.getElementById("profileInfo").innerHTML = `
<p>Username: ${currentUser}</p>
<p>Recipes Uploaded: ${user.recipes.length}</p>
<p>Recipes Saved: ${user.saved.length}</p>
<p>Ratings Received: ${user.ratings.length}</p>
`;
}
function saveRecipe(owner, index) {
const recipe = users[owner].recipes[index];
users[currentUser].saved.push(recipe);
saveUsers();
alert("Recipe saved!");
renderUserProfile();
renderRecipes();
}
// Delete saved recipe
function deleteSavedRecipe(index) {
users[currentUser].saved.splice(index, 1);
saveUsers();
alert("Saved recipe deleted.");
renderUserProfile();
renderRecipes();
}
// Delete own recipe from "All Recipes"
function deleteOwnRecipe(owner, index) {
if (owner === currentUser) {
users[owner].recipes.splice(index, 1);
saveUsers();
alert("Your recipe has been deleted.");
renderUserProfile();
renderRecipes();
} else {
alert("You can only delete your own recipes.");
}
}
// Show full recipe details for owned recipes or others
function showRecipeDetails(owner, index) {
const recipe = users[owner].recipes[index];
alert(
`Title: ${recipe.title}\n` +
`Ingredients: ${recipe.ingredients}\n` +
`Instructions: ${recipe.instructions}\n` +
`Tags: ${recipe.tags}\n` +
`Cuisine: ${recipe.cuisine}\n` +
`Cooking Time: ${recipe.time}\n` +
`Difficulty: ${recipe.difficulty}`
);
}
// Show full recipe details for saved recipes (no owner, just index in saved array)
function showRecipeDetailsSaved(index) {
const recipe = users[currentUser].saved[index];
alert(
`Title: ${recipe.title}\n` +
`Ingredients: ${recipe.ingredients}\n` +
`Instructions: ${recipe.instructions}\n` +
`Tags: ${recipe.tags}\n` +
`Cuisine: ${recipe.cuisine}\n` +
`Cooking Time: ${recipe.time}\n` +
`Difficulty: ${recipe.difficulty}`
);
}
document.getElementById("recipeForm").addEventListener("submit", function(event) {
event.preventDefault();
const recipe = {
title: recipeTitle.value,
ingredients: recipeIngredients.value,
instructions: recipeInstructions.value,
tags: recipeTags.value,
cuisine: recipeCuisine.value,
time: cookingTime.value,
difficulty: difficulty.value
};
users[currentUser].recipes.push(recipe);
saveUsers();
alert("Recipe submitted!");
recipeForm.reset();
renderRecipes();
});
function hideAllPages() {
["loginPage", "signupPage", "myRecipes", "allRecipes", "submitRecipe", "userProfile"].forEach(id => document.getElementById(id).style.display = "none");
}
function showPage(id) {
hideAllPages();
document.getElementById(id).style.display = "block";
if (id === 'userProfile') renderUserProfile();
if (id === 'allRecipes' || id === 'myRecipes') renderRecipes();
}
function showSignup() {
hideAllPages();
signupPage.style.display = "flex";
}
function showLogin() {
hideAllPages();
loginPage.style.display = "flex";
}
function toggleMenu() {
navLinks.style.display = navLinks.style.display === "flex" ? "none" : "flex";
}
</script>
</body>
</html>