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

Navigation link added #560

Merged
merged 1 commit into from
Nov 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
9 changes: 9 additions & 0 deletions views/login.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
width: 100%;
margin-top: 10px;
}
.navigatee{
color: #797979;
}
.navigatee a{
color: #ff385c;
}
/* Form Container - Floating Effect */
.dark-mode{
.form_body {
Expand Down Expand Up @@ -86,6 +92,9 @@
<button class="btn btn-danger" name="saveButton" type="submit">LOG IN</button>
<a href="/listing" class="btn btn-secondary" type="button">Go back</a>
</div>
<div class="mt-2 text-center navigatee">
Don't have an account? <a href="/signup">Register</a>
</div>
</div>
</form>

Expand Down
12 changes: 11 additions & 1 deletion views/signup.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@
padding: 30px;
box-shadow: 0 7px 15px rgba(113, 113, 113, 0.626);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
}
.navigatee{
color: #797979;
}
.navigatee a{
color: #ff385c;
}

/* Form Container - Floating Effect */
.dark-mode{
.form_body {
Expand Down Expand Up @@ -108,6 +115,9 @@
<!-- <a class="btn btn-secondary" name="saveButton" type="button">Go back</a> -->
<a href="/listing" class="btn btn-secondary" type="button">Go back</a>
</div>
<div class="mt-2 text-center navigatee">
Already have an account? <a href="/login">Login</a>
</div>
</form>
</div>
</div>
Expand Down
Loading