diff options
author | Simon Rettberg | 2018-12-03 15:04:10 +0100 |
---|---|---|
committer | Simon Rettberg | 2018-12-03 15:04:10 +0100 |
commit | 62cd429deec4f8c3ba5a673a6fbf0b77e754520c (patch) | |
tree | 2f93bfc43e6b8a9c445c94989045310d39dc41e2 /modules-available | |
parent | [dozmod] Update translations (diff) | |
download | slx-admin-62cd429deec4f8c3ba5a673a6fbf0b77e754520c.tar.gz slx-admin-62cd429deec4f8c3ba5a673a6fbf0b77e754520c.tar.xz slx-admin-62cd429deec4f8c3ba5a673a6fbf0b77e754520c.zip |
[dozmod] networkshares: Use {{password_type}} for password field
Diffstat (limited to 'modules-available')
-rw-r--r-- | modules-available/dozmod/templates/networkshares-edit.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules-available/dozmod/templates/networkshares-edit.html b/modules-available/dozmod/templates/networkshares-edit.html index cc89dbcc..f0b43837 100644 --- a/modules-available/dozmod/templates/networkshares-edit.html +++ b/modules-available/dozmod/templates/networkshares-edit.html @@ -42,11 +42,11 @@ </div> <div class="input-group"> <label class="input-group-addon" for="username">{{lang_username}}</label> - <input required type="text" name="username" id ="username" class="form-control" value="{{username}}" {{#loggedInUser_selected}}disabled{{/loggedInUser_selected}}> + <input required type="text" name="username" id="username" class="form-control" value="{{username}}" {{#loggedInUser_selected}}disabled{{/loggedInUser_selected}}> </div> <div class="input-group"> <label class="input-group-addon" for="password">{{lang_password}}</label> - <input required type="password" name="password" id ="password" class="form-control" value="{{password}}" {{#loggedInUser_selected}}disabled{{/loggedInUser_selected}}> + <input required type="{{password_type}}" name="password" id="password" class="form-control" value="{{password}}" {{#loggedInUser_selected}}disabled{{/loggedInUser_selected}}> </div> <div class="text-right" style="margin-top: 20px"> <a href="?do=dozmod&section=networkshares" class="btn btn-default"> |