-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathambulanceSuccess.ejs
30 lines (25 loc) · 1.02 KB
/
ambulanceSuccess.ejs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<%- include('header') %>
<div class="choose-area pb_90">
<div class="container mt-4">
<div class="row">
<div class="col-12">
<div class="headline hospital-container">
<h2>Successfully Booked The Ambulance</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="headline hospital-container">
<div class="alert alert-success" role="alert">
<p>You have successfully booked the Ambulance for the Address - <%= location %></p><br>
<p>At time - <%= time %></p><br>
<p>Ambulance booked by - <%= name %></p><br>
<h4>The Ambulance will be at your location sharp at the stipulated time!</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<%- include('footer') %>