Skip to content
Snippets Groups Projects
Commit 1fc4c3ba authored by Chen Liang's avatar Chen Liang
Browse files

Upload New File

parent 5c09365b
No related branches found
No related tags found
2 merge requests!83Update the front end page of approve and reject the requests from care homes,!50Draft: Lc
<!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>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment