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>
2015-01-15 02:18:24 +01:00
< 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 >
2013-02-18 03:48:21 +01:00
</ div >
2013-09-05 02:45:06 +02:00
< form method = " post " action = " ?action=subscribe " autocomplete = " off " >
2014-11-08 03:44:20 +01:00
< ? = Helper\form_hidden ( 'csrf' , $values ) ?>
2013-08-04 03:07:15 +02:00
< ? = Helper\form_label ( t ( 'Website or Feed URL' ), 'url' ) ?>
2014-10-20 01:14:33 +02:00
< ? = Helper\form_text ( 'url' , $values , array (), array ( 'required' , 'autofocus' , 'placeholder="' . t ( 'http://website/' ) . '"' )) ?> <br/><br/>
2015-04-10 20:08:33 +02:00
< ? = 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 />
2014-10-20 01:14:33 +02:00
2013-08-31 17:05:45 +02:00
< 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>
2015-08-05 01:01:21 +02:00
< ? = 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 >
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>
2014-07-26 13:33:15 +02:00
< ? = t ( 'or' ) ?> <a href="?action=feeds"><?= t('cancel') ?></a>
2013-02-18 03:48:21 +01:00
</ div >
2013-06-10 16:23:48 +02:00
</ form >