Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

login-signup-auth #574

Merged
merged 5 commits into from
Oct 14, 2024
Merged
Show file tree
Hide file tree
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
12 changes: 9 additions & 3 deletions components/Navbar/Navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
<header>
<nav id="navbar">
<!-- Add an ID to the nav -->
<a href="/index.html" class="logo"
><img src="/images/logo.png" alt="PathSphere Logo" /> PathSphere</a>
<a href="/index.html" class="logo">
<img src="/images/logo.png" alt="PathSphere Logo" /> PathSphere
</a>
<button class="hamburger">
<span></span>
<span></span>
Expand All @@ -42,6 +43,11 @@
</li>
<li class="tab"><a href="/pages/faqs/faqs.html">FAQs</a></li>
<li class="tab"><a href="/pages/blog/blog.html">Blog</a></li>
<li class="tab">
<a href="/pages/login-signup/login-signup.html">
<i class="fa-solid fa-sign-in-alt"></i> Login
</a>
</li>
</ul>
</nav>
<div class="cursor"></div>
Expand All @@ -51,4 +57,4 @@
</header>
<script src="/components/Navbar/Navbar.js"></script>
</body>
</html>
</html>
94 changes: 50 additions & 44 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

<main>


<section class="hero">
<div class="left">
<h1>Welcome to PathSphere</h1>
Expand All @@ -30,6 +29,10 @@ <h1>Welcome to PathSphere</h1>
<i class="fa-solid fa-magnifying-glass"></i>
Find Jobs
</a>
<a href="/pages/login-signup/login-signup.html" class="btn">
<i class="fa-solid fa-user-plus"></i>
Register
</a>
</div>
</div>
</section>
Expand All @@ -54,54 +57,57 @@ <h2>Forum</h2>
<a href="/pages/forum/forum.html" class="btn">Join the Forum</a>
</div>
<div class="feature">
<h2>Testimonials</h2>
<h2>Testimonials</h2>
<p>Here are the testimonials and reviews.</p>
<a href="/pages/testimonials/testimonials.html" class="btn">Explore</a>
</div>
<div class="feature">
<h2>Login</h2>
<p>Access your account to manage your applications and profile.</p>
<a href="/pages/login-signup/login-signup.html" class="btn">
<i class="fa-solid fa-sign-in-alt"></i>
Login
</a>
</div>
</section>

</div>
</div>
<div class="feature-item">
<i class="fas fa-briefcase"></i>
<div>
<h6>Job Portal</h6>
<p class="hidden-text">Job opportunities tailored for educators.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-users"></i>
<div>
<h6>Community Forums</h6>
<p class="hidden-text">Share resources, advice, experiences.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-bell"></i>
<div>
<h6 >Instant Notifications</h6>
<p class="hidden-text">Get real-time important updates.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-bookmark"></i>
<div>
<h6 >Save & Track</h6>
<p class="hidden-text">Bookmark and monitor application progress.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-tools"></i>
<div>
<h6>Resume Builder</h6>
<p class="hidden-text">Create a professional profile easily.</p>
</div>
</div>
</div>
<div class="feature-item">
<i class="fas fa-briefcase"></i>
<div>
<h6>Job Portal</h6>
<p class="hidden-text">Job opportunities tailored for educators.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-users"></i>
<div>
<h6>Community Forums</h6>
<p class="hidden-text">Share resources, advice, experiences.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-bell"></i>
<div>
<h6>Instant Notifications</h6>
<p class="hidden-text">Get real-time important updates.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-bookmark"></i>
<div>
<h6>Save & Track</h6>
<p class="hidden-text">Bookmark and monitor application progress.</p>
</div>
</div>
<div class="feature-item">
<i class="fas fa-tools"></i>
<div>
<h6>Resume Builder</h6>
<p class="hidden-text">Create a professional profile easily.</p>
</div>
</div>
</section>


<section id="testimonials">
<div class="container py-5">
<div class="row justify-content-center">
Expand Down Expand Up @@ -198,13 +204,13 @@ <h6 class="font-weight-bold my-3">EdTech Professional at Byju's</h6>
chatbotId: "7akUzokCgwR0gNp0m-qQF",
domain: "www.chatbase.co"
}
</script>
<script
</script>
<script
src="https://www.chatbase.co/embed.min.js"
chatbotId="7akUzokCgwR0gNp0m-qQF"
domain="www.chatbase.co"
defer>
</script>
</script>

</body>

Expand Down
Loading