Disable autocomplete on the connection url string for security reasons

This commit is contained in:
Dan Sosedoff 2017-11-30 22:25:20 -06:00
parent 68bc907bd2
commit 4f2fac11d3
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -133,7 +133,7 @@
<div class="form-group">
<div class="col-sm-12">
<label>Enter server URL scheme</label>
<input type="text" class="form-control" id="connection_url" name="url">
<input type="text" class="form-control" id="connection_url" name="url" autocomplete="off">
<p class="help-block">URL format: postgres://user:password@host:port/db?sslmode=mode</p>
</div>
</div>