-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #474 from ITPNYU/revert-473-main
Revert "Prod Release 11/1"
- Loading branch information
Showing
17 changed files
with
505 additions
and
274 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<style> | ||
.container { | ||
width: 100%; | ||
padding-right: 15px; | ||
padding-left: 15px; | ||
margin-right: auto; | ||
margin-left: auto; | ||
} | ||
|
||
.button { | ||
cursor: pointer; | ||
outline: 0; | ||
display: inline-block; | ||
font-weight: 400; | ||
line-height: 1.5; | ||
text-align: center; | ||
background-color: transparent; | ||
border: 1px solid transparent; | ||
padding: 6px 12px; | ||
font-size: 1rem; | ||
border-radius: 0.25rem; | ||
transition: | ||
color 0.15s ease-in-out, | ||
background-color 0.15s ease-in-out, | ||
border-color 0.15s ease-in-out, | ||
box-shadow 0.15s ease-in-out; | ||
color: #0d6efd; | ||
border-color: #0d6efd; | ||
:hover { | ||
color: #fff; | ||
background-color: #0d6efd; | ||
border-color: #0d6efd; | ||
} | ||
} | ||
|
||
.button:active { | ||
background-color: #3e8e41; | ||
box-shadow: 0 5px #666; | ||
transform: translateY(4px); | ||
} | ||
|
||
.button-red { | ||
padding: 8px 12px; | ||
border: 1px solid #ed2939; | ||
border-radius: 2px; | ||
font-family: Helvetica, Arial, sans-serif; | ||
font-size: 14px; | ||
color: #ffffff; | ||
text-decoration: none; | ||
font-weight: bold; | ||
display: inline-block; | ||
} | ||
|
||
.button-red:active { | ||
background-color: #8b0000; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="index"></div> | ||
<div class="container"> | ||
<p>{{ contents.headerMessage }}</p> | ||
</div> | ||
<div class="container"> | ||
<h2>Room Reservation Request</h2> | ||
<p>Room Number: {{ contents.roomId }}</p> | ||
|
||
<p>First name: {{ contents.firstName }}</p> | ||
<p>Last name: {{ contents.lastName }}</p> | ||
|
||
<p>Email: {{ contents.email }}</p> | ||
<p>Start date: {{ startDate }}</p> | ||
<p>End date: {{ endDate }}</p> | ||
<p>Secondary Point of Contact: {{ contents.secondaryName }}</p> | ||
<p>NYU N-number: {{ contents.nNumber }}</p> | ||
<p>Net Id: {{ contents.netId }}</p> | ||
<p>Phone Number: {{ contents.phoneNumber }}</p> | ||
<p>Department: {{ contents.department }}</p> | ||
<p>Requestor's Role: {{ contents.role}}</p> | ||
<p>Sponsor First Name: {{ contents.sponsorFirstName }}</p> | ||
<p>Sponsor Last Name: {{ contents.sponsorLastName }}</p> | ||
<p>Sponsor Email: {{ contents.sponsorEmail }}</p> | ||
<p>Title: {{ contents.title }}</p> | ||
<p>Description: {{ contents.description }}</p> | ||
<p>Booking Type: {{ contents.bookingType }}</p> | ||
<p>Expected Attendance: {{ contents.expectedAttendance }}</p> | ||
<p>Attendee Affiliations: {{ contents.attendeeAffiliation }}</p> | ||
<p> | ||
Room setup needed?: {{ contents.roomSetup }} {{ contents.setupDetails }} | ||
</p> | ||
<p>Chartfield for Room setup?: {{ contents.chartFieldForRoomSetup }}</p> | ||
<p> | ||
Media Services: {{ contents.mediaServices }} {{ | ||
contents.mediaServicesDetails }} | ||
</p> | ||
<p>Catering: {{ contents.catering }}</p> | ||
<p>Catering Details: {{ contents.cateringService }}</p> | ||
<p>Chartfield for Catering?: {{ contents.chartFieldForCatering }}</p> | ||
<p>Hire Security: {{ contents.hireSecurity }}</p> | ||
<p> | ||
Chartfield for Hiring Security?: {{ contents.chartFieldForSecurity }} | ||
</p> | ||
|
||
<a href="{{ approvalUrl }}" target="_blank" class="button">Approve</a> | ||
<a href="{{ declineUrl }}" target="_blank" class="button-red">Decline</a> | ||
<a href="{{ contents.bookingToolUrl }}" target="_blank" class="button" | ||
>Open Booking Tool</a | ||
> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.