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

fix: #1336 Add redirect button to home-page. #1369

Merged
merged 1 commit into from
Aug 10, 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
7 changes: 0 additions & 7 deletions newLogin.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,6 @@
align-items: center;
}

.back-to-home {
display: flex;
align-items: center;
text-decoration: none;
color: white;
}

.back-to-home svg {
margin-right: 8px;
margin-left: 500px;
Expand Down
20 changes: 12 additions & 8 deletions newLogin.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,14 @@
<div id="loginDeclineBanner" class="decline-banner">Logged in Blocked <br> credentials didn't match</div>
<div id="registerSuccessBanner" class="success-banner">Registered successfully</div>
<div id="registerDeclineBanner" class="decline-banner">Registered Blocked <br> Same email address</div>
<!-- Back to Home Button -->
<div>
<a href="index.html">
<button style="padding: 25px 25px 25px 25px; border-radius: 40px; font-size: 20px;">
<i class="lni lni-home"></i>
</button>
</a>
</div>
<div class="main-container">
<div class="container" id="container">
<div class="form-container register-container">
Expand All @@ -37,16 +45,13 @@ <h1>Tour Guide</h1>
</div>
</form>
</div>

<div class="form-container login-container">
<form id="loginForm">

<h1><a style="margin-right: 300px;" href="index.html" class="back-to-home">

<form id="loginForm">
<!-- <svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="24" height="24" viewBox="0 0 24 24">
<path d="M19 12H5M5 12L12 19M5 12L12 5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg> -->
</a>Tour Guide</h1>
<h1>Tour Guide</h1>
<input type="email" placeholder="Email" id="loginEmail">
<div id="login-section" class="input-container">
<input type="password" placeholder="Password" id="loginPassword">
Expand All @@ -70,9 +75,8 @@ <h1><a style="margin-right: 300px;" href="index.html" class="back-to-home">
<a class="goog" href="www.google.com" class="social"><i class="lni lni-google"></i></a>
<a class="lin" href="www.linkedin.com" class="social"><i class="lni lni-linkedin-original"></i></a>
</div>
<!-- Back to Home Button -->

</form>

</div>

<div class="overlay-container">
Expand Down
Loading