-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (37 loc) · 988 Bytes
/
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
<html>
<head>
<meta charset='utf-8' />
<title></title>
<meta name='viewport' content='width=device-width;' />
<link href='css/style.css' type='text/css' rel='stylesheet' />
</head>
<body>
<div id='notificationArea'>
<span id='message'></span>
</div>
<header>
<img class='menu' src='images/menu.svg' />
<div class='nav-border'>
<nav>
<a id='loginologout' href='#'></a>
<a onclick='createoviewprofile();' id='createoviewprofile' href='#'></a>
</nav>
</div>
<div id='smartLocation' class='smartTypingField'>
</div>
<div id='smartContact' class='smartTypingField'>
</div>
<button id='usersearch' onclick='searchusers();'></button>
</header>
<section>
<div id='profile'>
</div>
<div id='userlist'>
</div>
</section>
<script src='js/core.js'></script>
<script src='js/i18u.js'></script>
<script src='js/smartfields.js'></script>
<script src='js/mentorosm.js'></script>
</body>
</html>