2013-02-17 21:48:21 -05:00
|
|
|
<div class="page-header">
|
2013-04-12 21:08:55 -04:00
|
|
|
<h2><?= t('New subscription') ?></h2>
|
2013-02-24 14:04:56 -05:00
|
|
|
<ul>
|
2013-04-12 21:08:55 -04:00
|
|
|
<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>
|
2013-02-24 14:04:56 -05:00
|
|
|
</ul>
|
2013-02-17 21:48:21 -05:00
|
|
|
</div>
|
|
|
|
|
2013-03-24 10:31:54 -04:00
|
|
|
<form method="post" action="?action=add" autocomplete="off">
|
2013-08-03 21:07:15 -04:00
|
|
|
<?= Helper\form_label(t('Website or Feed URL'), 'url') ?>
|
|
|
|
<?= Helper\form_text('url', $values, array(), array('required', 'autofocus', 'placeholder="'.t('http://website/').'"')) ?>
|
2013-02-17 21:48:21 -05:00
|
|
|
<div class="form-actions">
|
2013-04-12 21:08:55 -04:00
|
|
|
<button type="submit" class="btn btn-blue"><?= t('Add') ?></button>
|
2013-02-17 21:48:21 -05:00
|
|
|
</div>
|
2013-06-10 16:23:48 +02:00
|
|
|
</form>
|