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-09-05 02:45:06 +02:00
< form method = " post " action = " ?action=subscribe " autocomplete = " off " >
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/>
< ? = Helper\form_checkbox ( 'rtl' , t ( 'Force RTL mode (Right-to-left language)' ), 1 , isset ( $values [ 'rtl' ]) ? $values [ 'rtl' ] : false ) ?> <br/>
2013-08-31 17:05:45 +02:00
< ? = Helper\form_checkbox ( 'download_content' , t ( 'Download full content' ), 1 , isset ( $values [ 'download_content' ]) ? $values [ 'download_content' ] : false ) ?> <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>
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 >