-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch3.html
111 lines (62 loc) · 2.79 KB
/
search3.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<html>
<head>
<title>KeepCont4ct</title>
<script type="text/javascript" src="js/md5.js"></script>
<script type="text/javascript" src="js/code.js"></script>
<link href="css/styles2.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link href="scss/style3.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet">
</head>
<body style="background-color: white">
<header id="header">
<img id="HeaderLogo" src="images/logo.png" alt="" href="/dashboard.html">
<div type="button" value="Register" id="logOutButton" onclick="doLogout()">LogOut</div>
</header>
<div id="myModal" class="modal" style="display: block;">
<!-- Modal content -->
<div class="modal-content2" id="modal-content" style="display: block;">
<span class="close" onclick="closePopUp()">×</span>
<div style="width: 90%; margin-right: 0%;">
<h1 id="t-name">Dante Edmonson</h1>
</div>
<br>
<h2 id="t-num" class="pInfo">number: 3529429732</h2>
<h2 id="t-email" class="pInfo">email: [email protected]</h2>
<h3 class="pInfo">note: </h3>
<button type="button" value="Register" class="deleteButton">Delete</button>
<button type="button" value="Register" class="modifyButton" onclick="test2()">Modify</button>
<div style="text-align: center;">
<button type="button" value="Register" class="saveButton" onclick="modifyContact(ID)">Save</button>
<button type="button" value="Register" class="exitButton">Exit</button>
</div>
</div>
</div>
<div id="sDiv">
<div class="search">
<input id="inpt_search" type="text" value="" onkeyup="searchContacts()" />
</div>
<div id="sContent">
<div id="contactSearchResult"></div>
<div id="contactInfo">
<div class="table-wrap">
<table class="table table-bordered table-dark table-hover">
<thead>
<tr>
<th></th>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
</tr>
</thead>
<tbody id="searchR">
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>
</html>