Skip to content

Commit

Permalink
Merge branch 'main' into faq
Browse files Browse the repository at this point in the history
  • Loading branch information
dipexplorer authored Oct 16, 2024
2 parents 07e9fe3 + d7adef0 commit 5fbcdc0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ app.use((req, res, next) => {
res.locals.success = req.flash('success');
res.locals.error = req.flash('error');
res.locals.currUser=req.user; //storecurrent session user info in currUser
console.log(res.locals);
// console.log(res.locals);
next();
});

Expand Down
4 changes: 2 additions & 2 deletions views/includes/footer.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</div>
<div class="phone" style="display: flex; align-items: center;">
<i class="fas fa-phone" style="position: relative; bottom: 10px;"></i>
<p>Available 24/7<br><a href="tel:+919876543210">+91-9876543210</a></p>
<p>Available 24/7<br><a href="tel:+919876543210">+91-0123456789</a></p>
</div>
</div>
</div>
Expand All @@ -37,4 +37,4 @@
<div class="copyright">
<p>&copy; Wanderlust Private Limited All rights reserved.</p>
</div>
</footer>
</footer>
4 changes: 1 addition & 3 deletions views/show.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,7 @@
class="card listing-card card-body col-lg-11 col-md-8 col-sm-10 col-xs-10 offset-lg-3 offset-md-2 offset-sm-1">
<!-- Form for add reviews. -->
<form action="/listing/<%= list._id %>/review" method="post" novalidate
class="needs-validation">
<form action="/listing/<%= list._id %>/review" method="post" novalidate class="needs-validation">
<div>
<label for="rating" class="form-label bold2">Rating:</label>
<fieldset class="starability-grow">
Expand Down

0 comments on commit 5fbcdc0

Please sign in to comment.