-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappointfile.html
More file actions
28 lines (26 loc) · 802 Bytes
/
appointfile.html
File metadata and controls
28 lines (26 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Appointment app</h1>
<hr>
<form id="data-form">
<label for="name">Name:</label>
<input type="text" id="name" required>
<br>
<label for="email">Email:</label>
<input type="email" id="email" required>
<br>
<button type="submit">Submit</button>
</form>
<p id="message"></p>
<ul id="data-list"></ul>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script type="text/javascript" src="testScript.js"></script>
<script type="text/javascript" src="promises.js"></script>
</body>
</html>