20 lines
836 B
PHP
Raw Normal View History

2013-02-17 21:48:21 -05:00
<div class="page-header">
<h2><?php echo t('OPML Import') ?></h2>
2015-01-14 20:18:24 -05: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-14 20:18:24 -05:00
</ul>
</nav>
2013-02-17 21:48:21 -05:00
</div>
<form method="post" action="?action=import" enctype="multipart/form-data">
<label for="file"><?php echo t('OPML file') ?></label>
2013-02-17 21:48:21 -05: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-17 21:48:21 -05:00
</div>
</form>