summaryrefslogtreecommitdiffstats
path: root/templates/part.navigation.addfeed.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/part.navigation.addfeed.php')
-rw-r--r--templates/part.navigation.addfeed.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/templates/part.navigation.addfeed.php b/templates/part.navigation.addfeed.php
index 58f3b2e76..663535115 100644
--- a/templates/part.navigation.addfeed.php
+++ b/templates/part.navigation.addfeed.php
@@ -75,6 +75,26 @@
<?php p($l->t('Folder exists already!')); ?>
</p>
+ <!-- basic auth -->
+ <button type="button" class="add-feed-advanced" ng-click="Navigation.showAddFeedAdvanced=!Navigation.showAddFeedAdvanced">
+ <?php p($l->t('Advanced settings')); ?>
+ </button>
+ <div ng-if="Navigation.showAddFeedAdvanced" class="add-feed-advanced-area">
+ <h2><?php p($l->t('Credentials')); ?></h2>
+ <p class="warning"><?php p($l->t('HTTP Basic Auth credentials must be stored unencrypted! Everyone with access to the server or database will be able to access them!')); ?></p>
+ <input type="text"
+ ng-model="Navigation.feed.user"
+ placeholder="<?php p($l->t('Username')); ?>"
+ name="user"
+ autofocus>
+
+ <input type="password"
+ ng-model="Navigation.feed.password"
+ placeholder="<?php p($l->t('Password')); ?>"
+ name="password">
+ </div>
+
+ <!-- submit -->
<input type="submit"
value="<?php p($l->t('Subscribe')); ?>"
class="primary"