forked from tavleenkaur26/techseva
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (108 loc) · 4.61 KB
/
index.html
File metadata and controls
130 lines (108 loc) · 4.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>NutriShakti</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<!-- LEFT SECTION -->
<div class="left-section">
<img src="NutriShakti_logo.jpg"
alt="logo"
class="logo-img">
<div class="logo-space">
<img src="NutriShakti_logo.jpg" alt="logo" class="logo-img" />
</div>
<!-- Floating decorative veggies/fruits -->
<img src="https://cdn-icons-png.flaticon.com/512/415/415733.png" class="floating-item" alt="">
<img src="https://cdn-icons-png.flaticon.com/512/765/765514.png" class="floating-item" alt="">
<img src="https://cdn-icons-png.flaticon.com/512/590/590685.png" class="floating-item" alt="">
<div class="text-content">
<h1>Welcome to <span>NutriShakti!</span></h1>
<p class="tagline">Nourishing India, One Plate at a Time</p>
<p class="about">
Blending Tech with Tradition - at NutriShakti, we believe in local, seasonal and affordable health solutions.
Get personalised plans that suit your diet, lifestyle and goals!
</p>
</div>
</div>
<!-- RIGHT SECTION -->
<div class="right-section">
<div class="login" id="onboard">
<form id="onboard-form">
<!-- STEP 1 -->
<div class="step" id="step-1">
<h2>Login to Continue</h2>
<label>Email</label>
<input type="email" name="email" placeholder="Enter your email" required>
<label>Password</label>
<input type="password" name="password" placeholder="Enter your password" required>
<button type="button" id="next1">Next →</button>
</div>
<!-- STEP 2 -->
<div class="step" id="step-2" style="display:none;">
<h2>Personal Details</h2>
<label>Full Name</label>
<input type="text" name="fullname" placeholder="Enter your full name" required>
<label>Age</label>
<input type="number" name="age" placeholder="Enter your age" required>
<label>Gender</label>
<input type="text" name="gender" placeholder="Enter your gender" required>
<div class="buttons">
<button type="button" id="back1">← Back</button>
<button type="button" id="next2">Next →</button>
</div>
</div>
<!-- STEP 3 -->
<div class="step" id="step-3" style="display:none;">
<h2>Select Your Goal</h2>
<select id="goal" name="goal" required>
<option value="">-- Choose a Goal --</option>
<option value="Weight Loss">Weight Loss</option>
<option value="Muscle Gain">Muscle Gain</option>
<option value="Balanced Diet">Balanced Diet</option>
</select>
<div class="buttons">
<button type="button" id="back2">← Back</button>
<button type="button" id="next3">Next →</button>
</div>
</div>
<!-- STEP 4 -->
<div class="step" id="step-4" style="display:none;">
<h2>Your Preferences</h2>
<div class="preferences-list">
<label><input type="checkbox" id="veg"> Vegetarian</label>
<label><input type="checkbox" id="nonveg"> Non-Vegetarian</label>
<label><input type="checkbox" id="allergies"> Allergic to Dairy</label>
</div>
<div class="buttons">
<button type="button" id="back3">← Back</button>
<button type="button" id="next4">Next →</button>
</div>
</div>
<!-- STEP 5 -->
<div class="step" id="step-5" style="display:none;">
<h2>Set Your Monthly Budget</h2>
<input type="range" id="budget" min="500" max="10000" step="100" value="2500" />
<p>Your budget: ₹<span id="budgetVal">2500</span></p>
<div class="buttons">
<button type="button" id="back4">← Back</button>
<button type="button" id="next5">Next →</button>
</div>
</div>
<!-- STEP 6 -->
<div class="step" id="step-6" style="display:none;">
<h2>Welcome to NutriShakti 🎉</h2>
<p id="summary"></p>
<button type="submit" id="goDashboard">Go to Dashboard</button>
</div>
</form>
</div>
</div>
</div>
<script src="script.js" defer></script>
</body>
</html>