From 1fc4c3bae68920c7ad81c0e33645c42dc48a10d7 Mon Sep 17 00:00:00 2001
From: Chen Liang <liangc13@cardiff.ac.uk>
Date: Thu, 28 Nov 2024 10:45:12 +0000
Subject: [PATCH] Upload New File

---
 BookSlot.html | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)
 create mode 100644 BookSlot.html

diff --git a/BookSlot.html b/BookSlot.html
new file mode 100644
index 0000000..0b57948
--- /dev/null
+++ b/BookSlot.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html lang="zh-CN">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Healthcare Booking</title>
+    <link rel="stylesheet" href="src/resources/static/css/book.css">
+</head>
+<body>
+<div class="container">
+    <h1>Welcome to the booking system</h1>
+    <form id="bookingForm">
+        <div class="form-group">
+            <label for="name">Name:</label>
+            <input type="text" id="name" placeholder="Please insert your name" required>
+        </div>
+
+        <div class="form-group">
+            <label for="email">Email:</label>
+            <input type="email" id="email" placeholder="Please insert your email" required>
+        </div>
+
+        <div class="form-group">
+            <label for="date">Please choose the date:</label>
+            <input type="date" id="date" required>
+        </div>
+
+        <div class="form-group">
+            <label for="time">Please choose the time:</label>
+            <input type="time" id="time" required>
+        </div>
+
+        <button type="submit">Submit an appointment</button>
+    </form>
+</div>
+
+<script src="script.js"></script>
+</body>
+</html>
-- 
GitLab