Merge pull request #327 from sosedoff/no-autocomplete-on-connection-url

Disable autocomplete on the connection url string for security reasons
This commit is contained in:
Dan Sosedoff
2017-11-30 22:35:05 -06:00
committed by GitHub
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>