Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 101 additions & 0 deletions public/login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link
href="https://cdn.jsdelivr.net/npm/remixicon@3.4.0/fonts/remixicon.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css">
<title>Login - BODY CRAFT GYM</title>
</head>
<body>
<nav class="navbar">
<input type="checkbox" id="nav-toggle" class="nav-toggle" />
<label for="nav-toggle" class="nav-toggle-label">
<span></span>
<span></span>
<span></span>
</label>
<ul class="nav__links">
<li class="link"><a href="index.html">Home</a></li>
<li class="link"><a href="index.html#programs">Program</a></li>
<li class="link"><a href="index.html#classes">Service</a></li>
<li class="link"><a href="index.html#diet-plan">Diet Plan</a></li>
<li class="link"><a href="index.html#testimonials">About</a></li>
<li class="link"><a href="Pricing Plan.html">Pricing Plan</a></li>
<li class="link"><a href="contact.html">Contact Us</a></li>
</ul>
<div class="profile-container">
<a href="login.html" class="btn">Sign In</a>
</div>
</nav>

<div class="section__container login__container">
<div class="login__card">
<h2 class="section__header">Welcome Back!</h2>
<p class="section__subheader">Please enter your details to log in.</p>
<form class="login__form">
<div class="form__group">
<label for="email">Email</label>
<div class="input__group">
<i class="ri-mail-line"></i>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
</div>
</div>
<div class="form__group">
<label for="password">Password</label>
<div class="input__group">
<i class="ri-lock-password-line"></i>
<input type="password" id="password" name="password" placeholder="Enter your password" required>
</div>
</div>
<div class="form__options">
<a href="#" class="forgot__password">Forgot Password?</a>
</div>
<button type="submit" class="btn login__btn">Log In</button>
</form>
<p class="signup__prompt">
Don't have an account? <a href="#">Sign Up</a>
</p>
</div>
</div>

<footer class="section__container footer__container">
<span class="bg__blur"></span>
<span class="bg__blur footer__blur"></span>
<div class="footer__col">
<p>Take the first step towards a healthier, stronger you with our unbeatable pricing plans. Let's sweat, achieve, and conquer together!</p>
<div class="footer__socials">
<a href="#"><i class="ri-facebook-fill"></i></a>
<a href="#"><i class="ri-instagram-line"></i></a>
<a href="#"><i class="ri-twitter-fill"></i></a>
</div>
</div>
<div class="footer__col">
<h4>Company</h4>
<a href="#">Business</a>
<a href="#">Franchise</a>
<a href="#">Partnership</a>
</div>
<div class="footer__col">
<h4>About Us</h4>
<a href="#">Blogs</a>
<a href="#">Security</a>
<a href="#">Careers</a>
</div>
<div class="footer__col">
<h4>Contact</h4>
<a href="contact.html">Contact Us</a>
<a href="privacy-policy.html">Privacy Policy</a>
<a href="#">Terms & Conditions</a>
</div>
</footer>
<div class="footer__bar">
Copyright © Bodhisatwa Dutta-18. All rights reserved.
</div>

<script src="script.js"></script>
</body>
</html>