miniflux-legacy/templates/import.php

16 lines
578 B
PHP
Raw Normal View History

2013-02-18 03:48:21 +01:00
<div class="page-header">
2013-04-13 03:08:55 +02:00
<h2><?= t('OPML Import') ?></h2>
2013-02-24 20:04:56 +01:00
<ul>
2013-04-13 03:08:55 +02:00
<li><a href="?action=feeds"><?= t('feeds') ?></a></li>
<li><a href="?action=add"><?= t('add') ?></a></li>
<li><a href="?action=export"><?= t('export') ?></a></li>
2013-02-24 20:04:56 +01:00
</ul>
2013-02-18 03:48:21 +01:00
</div>
<form method="post" action="?action=import" enctype="multipart/form-data">
2013-04-13 03:08:55 +02:00
<label for="file"><?= t('OPML file') ?></label>
2013-02-18 03:48:21 +01:00
<input type="file" name="file" required/>
<div class="form-actions">
2013-04-13 03:08:55 +02:00
<button type="submit" class="btn btn-blue"><?= t('Import') ?></button>
2013-02-18 03:48:21 +01:00
</div>
</form>