-
Notifications
You must be signed in to change notification settings - Fork 0
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 #48 from cf15-t5/development
Development
- Loading branch information
Showing
5 changed files
with
230 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>New Event Organizer Registration Notification</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #f4f4f4; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.container { | ||
max-width: 600px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
background-color: #fff; | ||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
h1 { | ||
color: #333; | ||
} | ||
|
||
p { | ||
color: #555; | ||
} | ||
|
||
.notification { | ||
background-color: #007bff; | ||
color: #fff; | ||
padding: 10px; | ||
text-align: center; | ||
} | ||
|
||
.footer { | ||
text-align: center; | ||
margin-top: 20px; | ||
} | ||
|
||
.activate-button { | ||
display: inline-block; | ||
padding: 10px 20px; | ||
background-color: #007bff; | ||
color: #fff; | ||
text-decoration: none; | ||
border-radius: 5px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>New Event Organizer Registration Notification</h1> | ||
<div class="notification"> | ||
<p>A new event organizer has registered on your website.</p> | ||
</div> | ||
<p>Event Organizer Information:</p> | ||
<ul> | ||
<li>Event Organizer Name: {{name}}</li> | ||
<li>Email: {{email}}</li> | ||
</ul> | ||
<p>Please contact the event organizer for further details.</p> | ||
<p>To activate this EO account, please click the button below:</p> | ||
<a class="activate-button" href="https://seticket.aprnna.me">Activate EO Account</a> | ||
<div class="footer"> | ||
<p>Thank you,</p> | ||
<p>The Admin Team</p> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
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,83 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Event Sold Out Notification</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #f4f4f4; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
.container { | ||
max-width: 600px; | ||
margin: 0 auto; | ||
background-color: #ffffff; | ||
padding: 20px; | ||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | ||
} | ||
h1 { | ||
color: #333; | ||
} | ||
p { | ||
line-height: 1.6; | ||
color: #666; | ||
} | ||
.event-details { | ||
background-color: #f9f9f9; | ||
padding: 10px; | ||
border-radius: 5px; | ||
} | ||
.button { | ||
display: inline-block; | ||
padding: 10px 20px; | ||
background-color: #007BFF; | ||
color: #ffffff; | ||
text-decoration: none; | ||
border-radius: 5px; | ||
} | ||
.ticket-count { | ||
background-color: #007BFF; | ||
color: #ffffff; | ||
padding: 10px; | ||
border-radius: 5px; | ||
margin-top: 20px; | ||
} | ||
.event-banner { | ||
margin-bottom: 20px; | ||
max-height: 20rem; | ||
overflow: hidden; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="event-banner"> | ||
<img src="{{image_url}}" alt="Event Banner" width="100%" height="20vh"> | ||
</div> | ||
<h1>Event Sold Out Notification</h1> | ||
<p>Dear Event Organizer {{name}},</p> | ||
<p>We regret to inform you that your event, {{event_name}}, has sold out. Here are the event details:</p> | ||
|
||
<div class="event-details"> | ||
<h2>Event Details</h2> | ||
<p><strong>Event Name:</strong> {{event_name}}</p> | ||
<p><strong>Date:</strong> {{event_date}}</p> | ||
<p><strong>Time:</strong> {{event_time}}</p> | ||
<p><strong>Address:</strong> {{location}}</p> | ||
<p><strong>Category:</strong> {{category}}</p> | ||
</div> | ||
|
||
<p>The event has reached its maximum ticket count of <strong>{{ticket_count}}</strong> tickets.</p> | ||
|
||
<p>If you have any further questions or require assistance, please do not hesitate to contact us.</p> | ||
<p>Thank you for using our platform for your event. We hope it is a great success!</p> | ||
|
||
<p>Best Regards,<br>The SeTicket Team</p> | ||
|
||
</div> | ||
</body> | ||
</html> | ||
|