-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (76 loc) · 3.11 KB
/
index.html
File metadata and controls
82 lines (76 loc) · 3.11 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<title>My Guest Search</title>
<link rel="stylesheet" href="addressbook.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap" rel="stylesheet">
<link href="https://use.fontawesome.com/releases/v5.0.1/css/all.css" rel="stylesheet">
<script defer type="text/javascript" src="addressbook.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<form class="pop-up" id="add-form">
<header>
<div>Add New Profile</div>
<button type="button" class="exit-button">x</button>
</header>
<main>
<label for="fname">First Name</label><br>
<input id="fname" required><br>
<label for="lname">Last Name</label><br>
<input id="lname" required><br>
<label for="resid">Reservation Number</label><br>
<input id="resid" required><br>
<label for="member">Loyalty Member</label><br>
<input id="member" class="member" type="checkbox">
<span class="toggle"></span>
<br>
<button class="submit" >Submit</button>
</main>
</form>
<form class="pop-up" id="edit-form">
<header>
<div>Edit Profile</div>
<button type="button" class="exit-button">x</button>
</header>
<main>
<label for="edit-fname">First Name</label><br>
<input id="edit-fname" ><br>
<label for="edit-lname">Last Name</label><br>
<input id="edit-lname" ><br>
<label for="edit-resid">Reservation Number</label><br>
<input id="edit-resid" ><br>
<label for="edit-member">Loyalty Member</label><br>
<input id="edit-member" class="member" type="checkbox">
<span class="toggle"></span>
<br>
<button class="submit" id="update" type="button">Update</button>
<button id="delete" type="button">Delete</button>
</main>
</form>
<div class="content">
<header> Guest Search</header>
<main>
<div class="action-menu">
<div class="search-label">
<input class="search" placeholder="Search">
</div>
<button class="add-button">Add New Profile</button>
</div>
<div class="address-book">
<div class="header container">
<div class="sort detail" id="name-header">Name</div>
<div class="sort detail" id="resId-header">Reservation Number</div>
<div class="sort detail" id="member-header">Loyalty Member</div>
</div>
<div class="profile-table">
<div class="container hide" id="nonmatch">
<div class="detail">No matching records found</div>
</div>
</div>
</div>
</main>
</div>
</body>
</html>