-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
e.elhjoujy
committed
Oct 22, 2023
1 parent
4ce971e
commit 77df404
Showing
7 changed files
with
58 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
|
@@ -8,26 +9,41 @@ | |
<div class="container"> | ||
<div class="text-center mt-5"> | ||
<h1>Thank You!</h1> | ||
<h2 class="text-success "> | ||
Your reservation has been successfully submitted. | ||
</h2> | ||
<h3> | ||
Prix total : <c:out value="${prixTotal}"/> DH | ||
</h3> | ||
<p>Your reservation has been successfully submitted. Here are the details:</p> | ||
|
||
|
||
<div class="alert alert-success"> | ||
<strong>Reservation Details:</strong> | ||
<ul> | ||
<li><strong>Name:</strong> John Doe</li> | ||
<li><strong>Email:</strong> [email protected]</li> | ||
<li><strong>Date:</strong> October 25, 2023</li> | ||
<li><strong>Time:</strong> 7:00 PM</li> | ||
<li><strong>Name:</strong> | ||
<c:out value="${client.nom}"/> | ||
</li> | ||
<li><strong>Email:</strong> | ||
<c:out value="${client.email}"/> | ||
</li> | ||
<%-- <li><strong>Date:</strong>--%> | ||
<%-- <c:out value="${reservation.date_Reservation}"/>--%> | ||
<%-- </li>--%> | ||
<%-- <li><strong>Time:</strong>--%> | ||
<%-- <c:out value="${reservation.heure_Reservation}"/>--%> | ||
<%-- </li>--%> | ||
</ul> | ||
</div> | ||
|
||
<p>If you have any questions or need further assistance, please contact our customer service:</p> | ||
<address> | ||
<strong>Customer Service:</strong><br> | ||
Phone: (123) 456-7890<br> | ||
Email: info@example.com | ||
Phone: 0659707721 <br> | ||
Email: elhjoujy@gmail.com | ||
</address> | ||
|
||
<a href="" class="btn btn-primary">Return to Home</a> | ||
<a href="${pageContext.request.contextPath}/" class="btn btn-primary">Return to Home</a> | ||
</div> | ||
</div> | ||
|
||
|