<div class="page-header"> <h2><?= t('New subscription') ?></h2> <nav> <ul> <li class="active"><a href="?action=add"><?= t('add') ?></a></li> <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> </nav> </div> <form method="post" action="?action=subscribe" autocomplete="off"> <?= Helper\form_hidden('csrf', $values) ?> <?= Helper\form_label(t('Website or Feed URL'), 'url') ?> <?= Helper\form_text('url', $values, array(), array('required', 'autofocus', 'placeholder="'.t('http://website/').'"')) ?><br/><br/> <?= Helper\form_checkbox('rtl', t('Force RTL mode (Right-to-left language)'), 1, $values['rtl']) ?><br/> <?= Helper\form_checkbox('download_content', t('Download full content'), 1, $values['download_content']) ?><br/> <?= Helper\form_checkbox('cloak_referrer', t('Cloak the image referrer'), 1, $values['cloak_referrer']) ?><br /> <p class="form-help"><?= t('Downloading full content is slower because Miniflux grab the content from the original website. You should use that for subscriptions that display only a summary. This feature doesn\'t work with all websites.') ?></p> <?= Helper\form_label(t('Groups'), 'groups'); ?> <div id="grouplist"> <?php foreach ($groups as $group): ?> <?= Helper\form_checkbox('feed_group_ids[]', $group['title'], $group['id'], in_array($group['id'], $values['feed_group_ids']), 'hide') ?> <?php endforeach ?> <?= Helper\form_text('create_group', $values, array(), array('placeholder="'.t('add a new group').'"')) ?> </div> <div class="form-actions"> <button type="submit" class="btn btn-blue"><?= t('Add') ?></button> <?= t('or') ?> <a href="?action=feeds"><?= t('cancel') ?></a> </div> </form>