-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathimport.html
More file actions
79 lines (79 loc) · 3.83 KB
/
import.html
File metadata and controls
79 lines (79 loc) · 3.83 KB
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 lang="en">
<head>
<meta charset="UTF-8">
<title>Import JSON | Facebook Favorite extension</title>
<link href="css/pure-min.css" rel="stylesheet">
<link href="css/list.css" rel="stylesheet">
</head>
<body>
<div class="list-view pure-g">
<!-- <div id="header">
<h1>Facebook Favorite - Your List</h1>
<div id="setting">
<a id="clearCache" class="button-lnk" href="">Clear cache</a>
<a id="getFeeds" class="button-lnk" href="">Full Feeds</a>
</div>
</div> -->
<div class="sidebar pure-u-1 pure-u-med-1-4">
<div class="search-box">
<input id="search" type="text" value=""/>
</div>
<!-- <div class="fav-count-wrapper">
<h4>You have <span id="fav-count">0</span> Favorite(s).</h4>
</div> -->
<div class="header">
<hgroup>
<h1 class="brand-title">Facebook Favorite</h1>
<h2 class="brand-tagline">Save-it-later for Facebook | v1.0.6.3</h2>
</hgroup>
<br/>
<nav class="nav">
<ul class="nav-list">
<li class="nav-item">
<a id="getFeeds" class="button-lnk pure-button" href="#">Full Feeds</a>
</li>
<li class="nav-item">
<a id="getList" class="button-lnk pure-button" href="#">Full List</a>
</li>
<li class="nav-item">
<a id="export" target="_blank" download="fbfavorite.json" class="button-lnk pure-button" href="#">Export</a>
</li>
<li class="nav-item">
<a class="pure-button" target="_blank" href="http://karmiphuc.com/tools/fbfavorite.html#footer">Support</a>
<li class="nav-item">
<a id="clearCache" class="button-lnk pure-button" href="#">Clear cache</a>
</li>
</li>
<li class="nav-item">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_donations">
<input type="hidden" name="business" value="karmiphuc@gmail.com">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="item_name" value="Karmi Phuc - Facebook Favorite extension">
<input type="hidden" name="no_note" value="0">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="bn" value="PP-DonationsBF:btn_donate_SM.gif:NonHostedGuest">
<input type="image" class="donate-button" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
</li>
</ul>
</nav>
</div>
<div class="move-top header">
<a href="#">Go to Top</a>
</div>
</div>
<div id="container" class="list-content content pure-u-1 pure-u-med-3-4">
<div class="post pure-u-1-1">
<p><input type="file" id="importfile" name="importfile"></p>
<p><button id="btn-import" class="pure-button pure-button-primary" disabled="disabled">Import</button></p>
</div>
</div>
</div>
<script src="js/SaveFbLater.js"></script>
<script src="js/import.js"></script>
<style id="dynamic-style"></style>
</body>
</html>