2013-02-18 03:48:21 +01:00
|
|
|
<div class="page-header">
|
2013-04-13 03:08:55 +02:00
|
|
|
<h2><?= t('New subscription') ?></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=import"><?= t('import') ?></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>
|
|
|
|
|
2013-03-24 15:31:54 +01:00
|
|
|
<form method="post" action="?action=add" autocomplete="off">
|
2013-08-04 03:07:15 +02: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-18 03:48:21 +01:00
|
|
|
<div class="form-actions">
|
2013-04-13 03:08:55 +02:00
|
|
|
<button type="submit" class="btn btn-blue"><?= t('Add') ?></button>
|
2013-02-18 03:48:21 +01:00
|
|
|
</div>
|
2013-06-10 16:23:48 +02:00
|
|
|
</form>
|