aboutsummaryrefslogtreecommitdiff
path: root/app/views/subscription
diff options
context:
space:
mode:
authorGravatar maTh <math-home@web.de> 2021-10-21 12:47:50 +0200
committerGravatar GitHub <noreply@github.com> 2021-10-21 12:47:50 +0200
commitc5cfb2ac07f039bb7388dca3a4061755c8403fff (patch)
tree30facf25708de31dd9de07862cc99603b0a495e3 /app/views/subscription
parent008cbfef2ccb9c0e52f0329dd7a4519593638265 (diff)
fixed: add feed: advanced: white space char as default password (#3814)
* fixed space char as default password * fix: whitespace in feed http username configuration * fix: type=password * extend the type=password with the watch-password-plain button * init_extra() again for new slider content Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'app/views/subscription')
-rw-r--r--app/views/subscription/add.phtml5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/subscription/add.phtml b/app/views/subscription/add.phtml
index 65279bfc5..72abbeb30 100644
--- a/app/views/subscription/add.phtml
+++ b/app/views/subscription/add.phtml
@@ -63,7 +63,10 @@
<div class="form-group">
<label class="group-name" for="http_pass"><?= _t('sub.feed.auth.password') ?></label>
<div class="group-controls">
- <input id="http_pass" name="http_pass" type="text" value=" " autocomplete="new-password"/>
+ <div class="stick">
+ <input id="http_pass" name="http_pass" type="password" value="" autocomplete="new-password" />
+ <a class="btn toggle-password" data-toggle="http_pass"><?= _i('key') ?></a>
+ </div>
</div>
</div>