-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcontacts.html
31 lines (29 loc) · 1.02 KB
/
contacts.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="contacts.css">
</head>
<body>
<div id="logged" style="display: none;">
<button id="btnFetchAll">List all contacts</button>
<button id="btnBackup">Backup contacts</button>
<form id="search">
Search contact:
<input id="query">
<input type="submit" value="OK">
</form>
</div>
<div id="results">
</div>
<pre id="export">
</pre>
<button id="btnRegisterProtocol">Register protocol</button>
<a href="web+fdupdate:adri@whyd.com/github.com/adrienjoly/freelance-directory-profile/commit/2987b22c22df618d464af5e44d0d5c32d28e21c2">Test custom protocol handler</a>
<script src="https://apis.google.com/js/client.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script src="app.js"></script>
<script src="google-contacts.js"></script>
<script src="contacts.js"></script>
</body>
</html>