-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (37 loc) · 1016 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
43
44
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Meute</title>
<link rel="stylesheet" href="css/main.css">
<script data-main="src/main.js" src="lib/require.js"></script>
</head>
<body>
<div id="wrapper">
<header id="content-header">
<nav id="navigation">
<button data-action="me" class="me">Me</button>
<button data-action="new" class="new">New</button>
</nav>
<div id="info"></div>
<div id="remotestorage-connect"></div>
</header>
<div id="contact-list">
<header>
<div class="search">
<form>
<input type="text" name="q">
</form>
</div>
</header>
<div class="placeholder">
No contacts in list.
<br/><br/>
Drag vCards (.vcf files) into this window or <a href="?action=new">add a contact</a> manually.
</div>
</div>
<div id="contact">
</div>
</div>
</body>
</html>