-
Notifications
You must be signed in to change notification settings - Fork 0
/
export.html
48 lines (42 loc) · 1.46 KB
/
export.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
45
46
47
48
<!DOCTYPE html>
<html{if="$language !== 'auto'"} lang="{$language}"{/if}>
<head>
{include="includes"}
</head>
<body>
{include="page.header"}
<div class="pure-g pure-g-full">
<div class="pure-u-2-24"></div>
<form method="POST" action="{$base_path}/admin/export" name="exportform" id="exportform" class="page-form pure-u-20-24">
<h2 class="window-title">{"Export Database"|t}</h2>
<input type="hidden" name="token" value="{$token}">
<div>
<label><span class="label-name">{'Selection'|t}</span></label>
</div>
<div class="radio-buttons">
<label>
<input type="radio" name="selection" value="all" checked="checked">
{'All'|t}
</label>
<label>
<input type="radio" name="selection" value="private">
{'Private'|t}
</label>
<label>
<input type="radio" name="selection" value="public">
{'Public'|t}
</label>
</div>
<label class="checkbox">
<input type="checkbox" name="prepend_note_url" id="prepend_note_url">
<span class="label-name">{'Prepend note permalinks with this Shaarli instance\'s URL'|t}</span><br>
<span class="label-desc">{'Useful to import bookmarks in a web browser'|t}</span>
</label>
<div class="submit-buttons">
<input type="submit" value="{'Export'|t}">
</div>
</form>
</div>
{include="page.footer"}
</body>
</html>