-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcolor.html
More file actions
60 lines (51 loc) · 1.67 KB
/
color.html
File metadata and controls
60 lines (51 loc) · 1.67 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
<html>
<head>
<title>Colleague Finder</title>
<script type="text/javascript" src="js/code.js"></script>
<meta name = "viewport" content = "width=device-width, initial-scale=1.0">
<link href="css/index.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function()
{
readCookie();
loadContacts();
}, false);
</script>
</head>
<body>
<h1 id="title">Colleague Finder</h1>
<div id="loggedInDiv">
<span id="userName"></span><br />
<button type="button" id="logoutButton" class="buttons" onclick="doLogout();"> Log Out </button>
</div>
<div id="accessUIDiv">
<br />
<input type="text" id="contactSearchText" placeholder="Search Contacts"/>
<button type="button" id="searchContactButton" class="buttons" onclick="searchContact();"> Search Contact </button><br />
<span id="conlorSearchResult"></span>
<p id="contactList">
</p><br /><br />
<input type="text" id="contactName" placeholder="Contact Name">
<input type="text" id="contactPhone" placeholder="Contact Phone">
<input type="text" id="contactEmail" placeholder="Contact Email">
<button type="button" id="addContactButton" class="buttons" onclick="addContact();"> Add Contact </button><br />
<span id="colorAddResult"></span>
</div>
<div class="tables">
<div class="tbl-content" id="contactsTable">
<table id="contacts" cellpadding="0" cellspacing="10" border="0">
<thread>
<tr>
<th>Name</th>
<th>Email</th>
<th>Phone</th>
<th></th>
</tr>
</thread>
<tbody id="tbody"></tbody>
</table>
</div>
</div>
</body>
</html>