miniflux-legacy/app/templates/config/import.php

20 lines
836 B
PHP
Raw Normal View History

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