-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
39 lines (39 loc) · 1.33 KB
/
profile.html
File metadata and controls
39 lines (39 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile - HECA Fitness</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">
<a href="index.html"><img src="Images/hecafitness.png" alt="HECA Fitness Logo" /></a>
</div>
<nav>
<ul>
<li><a href="meal-prep.html">Meal Prep</a></li>
<li><a href="exercise.html">Exercise</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="profile.html" class="active">Profile</a></li>
</ul>
</nav>
</header>
<main>
<section class="profile">
<h1>Your Profile</h1>
<section class="form-section">
<form id="workout-form" method="GET" action="/showProfile">
<label>Input Your Email:</label>
<input type="email" id="email" name="email" required>
<button type="submit" class="cta-button" style="background-color: #d72638">Show Profile</button>
</form>
</section>
</section>
</main>
<footer>
<p>© 2024 HECA Fitness. All Rights Reserved.</p>
</footer>
</body>
</html>