Files
IZYIM-mobile-client/search-contact.html
T
2018-03-20 15:17:30 +08:00

213 lines
11 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AzureUI - SEARCH CONTACT</title>
<link href="https://fonts.googleapis.com/css?family=Nunito:400,600,700,900" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/global.style.css">
<style>
</style>
</head>
<body>
<!-- Wrapper Content Start Here -->
<div class="wrapper">
<!-- Wrapper Inline Start Here -->
<div class="wrapper-inline">
<div class="search-result-header fix-searchbar">
<!-- or without .fix-searchbar -->
<form class="fix-searchbar">
<input type="text" id="searchInput" class="form-element" placeholder="search by company name" onkeyup="CSearch()">
<button id="btnback" type="button" class="search-result-btn"><i class="fa fa-arrow-left"></i></button>
</form>
</div>
<!-- Page Content Start Here -->
<main class="fix-top-menu">
<section class="container">
<!-- Navigation Body Start Here -->
<div class="cont-menu">
<!-- Navigation Menu Start Here -->
<cont class="menu">
<!-- Menu navigation start -->
<div class="cont-container">
<ul id="AddCompany" class="main-menu" style="display: none; background-color: #FFF">
<li>
<a href="#">
<i class="fa fa-user"></i>
Fedrick Darel Auditore
<span class="list-item-title-role" style="margin-top:-10px">019-7951905</span>
<br />
<span class="list-item-title-role" style="margin-top:-10px">Azure Corp</span>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-user"></i>
Alexander
<span class="list-item-title-role" style="margin-top:-10px">019-7518811</span>
<br />
<span class="list-item-title-role" style="margin-top:-10px">Roma Inc</span>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-user"></i>
Rovio Dough
<span class="list-item-title-role" style="margin-top:-10px">019-3319013</span>
<br />
<span class="list-item-title-role" style="margin-top:-10px">Rovio Games</span>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-user"></i>
Mark
<span class="list-item-title-role" style="margin-top:-10px">012-7953102</span>
<br />
<span class="list-item-title-role" style="margin-top:-10px">Facebook</span>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-user"></i>
Bruce Wayne
<span class="list-item-title-role" style="margin-top:-10px">013-1131521</span>
<br />
<span class="list-item-title-role" style="margin-top:-10px">Wayne Enterprise</span>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-user"></i>
Daniel Jake
<span class="list-item-title-role" style="margin-top:-10px">012-7224135</span>
<br />
<span class="list-item-title-role" style="margin-top:-10px">Daniel Inc</span>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-user"></i>
Harry
<span class="list-item-title-role" style="margin-top:-10px">016-3124451</span>
<br />
<span class="list-item-title-role" style="margin-top:-10px">CIEF</span>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-user"></i>
Kiah Wang Auditore
<span class="list-item-title-role" style="margin-top:-10px">011-7951905</span>
<br />
<span class="list-item-title-role" style="margin-top:-10px">Land Estate Inc</span>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-user"></i>
Spongebob
<span class="list-item-title-role" style="margin-top:-10px">016-1233255</span>
<br />
<span class="list-item-title-role" style="margin-top:-10px">Karate Corp</span>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-user"></i>
Zack Synder
<span class="list-item-title-role" style="margin-top:-10px">012-2451105</span>
<br />
<span class="list-item-title-role" style="margin-top:-10px">DC Entertainment</span>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-user"></i>
Alice Wong Auditore
<span class="list-item-title-role" style="margin-top:-10px">016-7951155</span>
<br />
<span class="list-item-title-role" style="margin-top:-10px">Alliance Estate</span>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-user"></i>
Violet Auditore Firenze
<span class="list-item-title-role" style="margin-top:-10px">012-2311975</span>
<br />
<span class="list-item-title-role" style="margin-top:-10px">MC Muzic Inc</span>
</a>
</li>
<li>
<a href="#">
<i class="fa fa-user"></i>
Jack Ma
<span class="list-item-title-role" style="margin-top:-10px">012-7611005</span>
<br />
<span class="list-item-title-role" style="margin-top:-10px">Alibaba Express</span>
</a>
</li>
</ul>
<div class="form-divider"></div>
</div>
<!-- Menu navigation end -->
</cont>
<!-- Navigation Menu End Here-->
</div>
<!-- Navigation Body Start Here -->
</section>
</main>
<!-- Page Content End Here -->
</div>
<!-- Wrapper Inline End Here -->
</div>
<!-- Wrapper Content End Here -->
<!-- Required For All Pages, Otherwise Ugly Others Function Won't Work -->
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/global.script.js"></script>
<!-- Required For All Pages, Otherwise Ugly Others Function Won't Work -->
<script type="text/javascript">
function CSearch() {
// Declare variables
var input, filter, ul, li, a, i;
input = document.getElementById('searchInput');
filter = input.value.toUpperCase();
ul = document.getElementById("AddCompany");
li = ul.getElementsByTagName('li');
if (input.value.length == 0) {
ul.style.display = "none";
} else {
ul.style.display = "block";
}
// Loop through all list items, and hide those who don't match the search query
for (i = 0; i < li.length; i++) {
a = li[i].getElementsByTagName("a")[0];
if (a.innerHTML.toUpperCase().indexOf(filter) > -1) {
li[i].style.display = "block";
} else {
li[i].style.display = "none";
}
}
}
document.getElementById("btnback").onclick = function () {
javascript: history.back();
};
</script>
</body>
</html>