diff --git a/project_server.py b/project_server.py
index 6b4f7a08ea524499c2d7e7fbd160f0187ab170bd..1da08e12d787e612f45b0ea2a6d65f0915b2c57a 100644
--- a/project_server.py
+++ b/project_server.py
@@ -32,6 +32,16 @@ def returnManageCoworkingSpaces():
     if (request.method == 'GET'):
         return render_template("Manage_Coworking_Spaces.html")
 
+@app.route("/make_booking", methods=['GET'])
+def returnmakebooking():
+    if (request.method == 'GET'):
+        return render_template("make_booking.html")
+
+@app.route("/booking_confirmation", methods=['GET'])
+def returnbookingconfirmation():
+    if (request.method == 'GET'):
+        return render_template("booking_confirmation.html")
+
 @app.route("/Locations", methods=['GET'])
 def returnListLocations():
     if (request.method =='GET'):
diff --git a/templates/booking_confirmation.html b/templates/booking_confirmation.html
new file mode 100644
index 0000000000000000000000000000000000000000..6880ac2f5ec805036a57782bb2b08f1fb6748edd
--- /dev/null
+++ b/templates/booking_confirmation.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<html>
+<head>
+<link rel="stylesheet" href="CSS/booking_confirmation.css">
+
+<title>Booking Confirmation</title>
+</head>
+
+  <header>
+      <img src="Tramshed-Logo-Main-Black.png" id=header />
+    </header>
+
+ <section>
+   <h1 class="bookingtitle">Booking Confirmation</h1>
+
+   <h1> You’re booked!<h1>
+  <h2> Hi Sam, It’s confirmed, we’ll see you on the 19th Jan! Thank you for booking Codebase with us on Tramshed. If you need to get in touch, you can email or phone us directly. We look forward to welcoming you soon!
+    Thanks again, The team at Tramshed <h2>
+
+ </section>