17 lines
664 B
PHP
17 lines
664 B
PHP
<div class="page-header">
|
|
<h2><?= t('New subscription') ?></h2>
|
|
<ul>
|
|
<li><a href="?action=feeds"><?= t('feeds') ?></a></li>
|
|
<li><a href="?action=import"><?= t('import') ?></a></li>
|
|
<li><a href="?action=export"><?= t('export') ?></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<form method="post" action="?action=add" autocomplete="off">
|
|
<?= Helper\form_label(t('Website or Feed URL'), 'url') ?>
|
|
<?= Helper\form_text('url', $values, array(), array('required', 'autofocus', 'placeholder="'.t('http://website/').'"')) ?>
|
|
<div class="form-actions">
|
|
<button type="submit" class="btn btn-blue"><?= t('Add') ?></button>
|
|
</div>
|
|
</form>
|