Files
thetempusproject/app/plugins/bookmarks/views/export.html
Joey Kimsey d428950be6 branding
2024-12-20 14:07:45 -05:00

48 lines
2.1 KiB
HTML

<div class="my-4">
<div class="offset-2 col-8 p-3 context-main-bg">
<legend class="text-center">Bookmark Export</legend>
<hr>
<h3 class="text-center text-muted">Select which folders to include in the export</h3>
<form action="" method="post">
<div class="row g-3 col-4 offset-4" data-masonry='{ "percentPosition": false }' id="bookmarkSort">
<table class="table context-main">
<thead>
<tr>
<th class="text-center" style="width: 80%">Title</th>
<th style="width: 20%">
<input type="checkbox" onchange="checkAll(this)" name="check.g" value="BF_[]">
</th>
</tr>
</thead>
<tbody class="">
<tr>
<td class="text-center">Unsorted</td>
<td>
<input type="checkbox" value="unsorted" name="BF_[]">
</td>
</tr>
{LOOP}
<tr>
<td class="text-center">{prettyTitle}</td>
<td>
<input type="checkbox" value="{ID}" name="BF_[]">
</td>
</tr>
{/LOOP}
{ALT}
<tr>
<td class="text-center context-main" colspan="7">
No Folders To Export
</td>
</tr>
{/ALT}
</tbody>
</table>
</div>
<div class="text-center">
<p>Literally every browser is chromium based now, so they all have a standard import/export.</p>
<button type="submit" name="submit" value="submit" class="btn btn-primary btn-lg atb-green-bg">Create Export</button>
</div>
</form>
</div>
</div>