Merge pull request #2141 from geforce-hisa0904/feature/proxy-setting

Change the input type of "Proxy Password" from "text" to "password".
This commit is contained in:
Naoki Takezoe
2018-09-09 00:05:44 +09:00
committed by GitHub

View File

@@ -38,7 +38,7 @@
<div class="form-group">
<label class="control-label col-md-2" for="proxyPassword">Proxy password</label>
<div class="col-md-10">
<input type="text" id="proxyPassword" name="proxy.password" class="form-control" value="@context.settings.pluginProxy.map(_.password)"/>
<input type="password" id="proxyPassword" name="proxy.password" class="form-control" value="@context.settings.pluginProxy.map(_.password)"/>
<span id="error-proxy_password" class="error"></span>
</div>
</div>