MyShaarli/tpl/myShaarli/export.html

39 lines
1.2 KiB
HTML
Raw Permalink Normal View History

2013-02-26 10:09:41 +01:00
<!DOCTYPE html>
<html{if="$language !=='auto'"} lang=" {$language}"{/if}>
2017-12-15 12:16:50 +01:00
<head>
{include="includes"}
</head>
2017-12-15 12:16:50 +01:00
<body>
{include="page.header"}
<section>
<h2 class="window-title">{"Export Database"|t}</h2>
<form method="POST" action="{$base_path}/admin/export" name="exportform" id="exportform">
<fieldset>
<legend>{'Selection'|t}</legend>
<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>
</fieldset>
<label for="prepend_note_url">
<input type="checkbox" name="prepend_note_url" id="prepend_note_url">
{'Prepend note permalinks with this Shaarli instance\'s URL'|t} <small>({'Useful to import bookmarks in a web browser'|t})</small>
</label>
<input type="hidden" name="token" value="{$token}">
2017-12-15 12:16:50 +01:00
<input type="submit" value="{'Export'|t}">
</form>
</section>
{include="page.footer"}
</body>
2017-12-15 12:16:50 +01:00
</html>