-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPetManager.html
65 lines (56 loc) · 2.77 KB
/
PetManager.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
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
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie-edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="js/code.js"></script>
<title>Contact Manager</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/delete.scss">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="bootstable.min.js"></script>
<script src="https://kit.fontawesome.com/98b4e25f15.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/@mdi/[email protected]/css/materialdesignicons.min.css" rel="stylesheet" type="text/css" />
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function()
{
readCookie();
}, false);
</script>
</head>
<body onload="searchContact()">
<main class="table">
<section class="table_header">
<div id="loggedInDiv">
<span id="userName"></span><br />
<button type="button" id="logoutButton" class="LogOutButton" onclick="doLogout();"> Log Out </button>
</div>
</section>
<section class="table_body">
<div class="search_wrap search_wrap_3">
<div class="search_box">
<input type="text" class="input" placeholder="search..." id="searchContact" oninput="searchContact();">
<span id="contactSearchResult"></span>
</div>
</div>
<table class="table" id="contactList">
<span id="deleteContactResult"style="font-size:12.0pt;color:#ee0322;"></span>
</table>
<div id="accessUIDiv">
<br />
<label for="contactName"> Add Contact:</label>
<input type="text" id="contactFirstName" placeholder="Pet Name">
<input type="text" id="contactLastName" placeholder="Contact Last Name">
<input type="text" id="contactEmail" placeholder="Contact Email">
<input type="text" id="contactPhone" placeholder="Contact Phone Number">
<button type="button" id="addContactButton" class="buttons" onclick="addContact();"> Add Contact </button><br />
<span id="contactAddResult"style="font-size:12.0pt;color:#ee0322;"></span>
<br />
</div>
</section>
</main>
</body>
</html>