-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·79 lines (73 loc) · 3.06 KB
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>McFadyen Digital - UI test</title>
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
</head>
<body id="body">
<!-- Navigation -->
<nav class="navbar navbar-inverse" role="navigation">
<div class="navbar-header">
<a class="navbar-brand" href="/">McFadyen Digital - UI test</a>
<button onclick="highContrastMode()" class="pull-right btn navbar-btn"><i class="glyphicon glyphicon-text-background"></i></button>
<button onclick="biggerTextMode()" class="pull-right btn navbar-btn"><i class="glyphicon glyphicon-text-size"></i></button>
</div>
</nav>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Page Content -->
<div class="container">
<div class="row">
<h3 class="col-md-offset-4 col-md-4">Search for Employees</h3>
</div>
<!-- /.row -->
<div class="row">
<div class="form-group col-md-12">
<div class="input-group">
<span class="input-group-addon"><span class="glyphicon glyphicon-search" aria-hidden="true"></span></span>
<input type="text" class="form-control" id="searchInput" onkeyup="searchEmployee()" placeholder="Example: Mauro, etc.">
</div>
<div id="searchMsg" class="mt-10 hidden">Please enter at least 3 characters to start searching...</div>
</div>
</div>
<!-- /.row -->
<div class="row">
<h3 class="col-md-offset-4 col-md-4">Table of Contents</h3>
</div>
<!-- /.row -->
<div class="row">
<div class="col-lg-12">
<table class="table table-striped">
<thead>
<tr>
<th>Picture</th>
<th>Name</th>
<th>Age</th>
<th>Active</th>
<th>Email</th>
<th>Phone</th>
<th>Company</th>
<th>Balance</th>
</tr>
</thead>
<tbody id="tbody">
</tbody>
</table>
</div>
</div>
<div class="row">
<p id="noResultsMsg" class="col-md-12 text-center hidden">No results were found.</p>
</div>
<!-- /.row -->
<div class="row">
<button id="showMoreBtn" class="btn btn-default col-md-offset-4 col-md-4" onClick="showMoreRows()">Show More</button>
</div>
<!-- /.row -->
</div>
</body>
<script src="./assets/js/functions.js"></script>
<script src="./assets/js/main.js"></script>
</html>