-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.html
93 lines (68 loc) · 2.23 KB
/
dashboard.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
<!DOCTYPE html>
<html>
<head>
<title>IDHERO</title>
<script src="js/jquery.js"></script>
<script src="js/main.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<link rel="stylesheet" href="style/style.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="header">
<br><br><br>
</div>
<div class="cf"></div>
<div class="google-search">
<center>
<img class = "logo" src="images/idhero_logo.svg" alt="birdy">
<form id="getDATA" >
<div class="search-bar">
<input type="text" style= 'float:none' id = "valueHolder" placeholder="Enter Phone Number ### ### ## ##" name = "idSearch">
<input class = 'passwordInput' type="password" id = "passwordHolder" placeholder="Enter 4 Digit PIN CODE" name = "idSearch">
</div>
<input class="search btn btn-info" id ="submitButton" type="submit" value="GET INFO">
</form>
</center>
</div>
<div class = 'tableContainer container' style = 'width:550px'>
<table class = ' table table-bordered tableClass' >
<tr>
<td>Phone Number</td>
<td id ="phoneNumber">-</td>
</tr>
<tr>
<td>Name</td>
<td id ="name">-</td>
</tr>
<tr>
<td>Date of Birth</td>
<td id ="dob">-</td>
</tr>
<tr>
<td>Height</td>
<td id ="height">-</td>
</tr>
</table>
</div>
<footer class="footer">
<ul class="footer-left">
<li><a class="name" href="#">IDHERO INC</a></li>
</ul>
<ul class="footer-right">
<li><a href="#">Privacy & Terms</a></li>
<li><a href="#">Settings</a></li>
</ul>
</footer>
</div>
<script type="text/javascript">
$('input[type=text]').focus(function(){
$('.mic').css('border-color', '#4285F4');
}).blur(function(){
$('.mic').css('border-color', '#DCDCDC');
});
</script>
</body>
</html>