96 lines
3.2 KiB
HTML
96 lines
3.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css"
|
|
rel="stylesheet"
|
|
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT"
|
|
crossorigin="anonymous"
|
|
/>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css" />
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
|
|
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
|
|
crossorigin="anonymous"
|
|
referrerpolicy="no-referrer"
|
|
/>
|
|
<link rel="stylesheet" href="./newEvent.css" />
|
|
<title>Add New Party</title>
|
|
</head>
|
|
|
|
<body style="display: none">
|
|
<div class="navbar-container container">
|
|
<!-- NAVBAR: to be loaded with js -->
|
|
</div>
|
|
|
|
<div class="container">
|
|
<a href="/index.html"><i class="bi bi-chevron-left"></i></a>
|
|
<div class="row">
|
|
<form id="from-container">
|
|
<div class="outer-container">
|
|
<div class="event-name-box">
|
|
<div class="form-header">Name of the Event *</div>
|
|
<input id="event-name-input" type="text" class="form-control" name="event_name" />
|
|
</div>
|
|
<div class="Venue-box">
|
|
<div class="form-header">Venue of the party</div>
|
|
<input type="text" class="form-control" name="event_venue" />
|
|
</div>
|
|
<div class="event-date">
|
|
<div class="eventDate-box">
|
|
<div class="event-time-label-box">
|
|
<label for="meeting-time-start" class="event-time-label">Start date & time:</label>
|
|
<label for="meeting-time-end" class="event-time-label">End date & time:</label>
|
|
</div>
|
|
<div class="event-time-label-box">
|
|
<input
|
|
class="clock"
|
|
type="datetime-local"
|
|
id="meeting-time-start"
|
|
name="event_date_start"
|
|
min="2021-06-07T00:00"
|
|
max="2035-12-30T00:00"
|
|
step="900"
|
|
/>
|
|
<input
|
|
class="clock"
|
|
type="datetime-local"
|
|
id="meeting-time-end"
|
|
name="event_date_end"
|
|
min="2021-06-07T00:00"
|
|
max="2035-12-30T00:00"
|
|
step="900"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="event-date-reminder">
|
|
Enter the time in 15 mins interval, e.g. 15:00 or 15:15 or 15:30 or 15:45.
|
|
</div>
|
|
|
|
<!-- submit btn -->
|
|
<div class="submit-btn">
|
|
<button id="event-submit">
|
|
<img src="/asset/submit_button.svg" alt="Submit Button" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<script
|
|
src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js"
|
|
integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8"
|
|
crossorigin="anonymous"
|
|
></script>
|
|
<script type="module" src="./newEvent.js"></script>
|
|
</body>
|
|
</html>
|