-
Notifications
You must be signed in to change notification settings - Fork 0
/
pet.html
39 lines (32 loc) · 1.22 KB
/
pet.html
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
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pet shop</title>
</head>
<body >
<div id="petview">List of Pets</div>
<div id="ownerList">List Of Owners</div>
<div id="add">
<h2>Add A New Owner</h2>
<form id='ownerForm'>
<label for="addFirstName">First Name: </label>
<input id="addFirstName" type= "text" name="firstName">
<label for="addLastName">Last Name: </label>
<input id="addLastName" type= "text" name="lastName">
<label for="addTelephone">Telephone: </label>
<input id="addTelephone" type= "number" name= "telephone">
<label for="addAddress">Address: </label>
<input id="addAddress" type= "text" name="address">
<label for="addCity">City: </label>
<input id="addCity" type = "text" name="city">
<label for="addPet">Pet: </label>
<input id="addPet" type= "text" name="name">
<button id="addButton">Add</button>
</form>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.2/axios.js"></script>
<script src="./pet.js"></script>
</body>
</html>