Skip to content
Snippets Groups Projects
Commit 86bd2d94 authored by Mohammed Shorif's avatar Mohammed Shorif
Browse files

linked to server

parent 87703ea4
No related branches found
No related tags found
2 merge requests!69"link booking page to server",!67"link booking page to server"
This commit is part of merge request !69. Comments created here will be created in the context of that merge request.
...@@ -32,6 +32,16 @@ def returnManageCoworkingSpaces(): ...@@ -32,6 +32,16 @@ def returnManageCoworkingSpaces():
if (request.method == 'GET'): if (request.method == 'GET'):
return render_template("Manage_Coworking_Spaces.html") 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']) @app.route("/Locations", methods=['GET'])
def returnListLocations(): def returnListLocations():
if (request.method =='GET'): if (request.method =='GET'):
......
<!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>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment