Skip to content

Commit

Permalink
idb: config required fields
Browse files Browse the repository at this point in the history
  • Loading branch information
mcspr committed Aug 9, 2024
1 parent ca2f6ff commit 14b05e6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions code/html/src/panel-idb.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ <h2>
</div>

<div class="pure-control-group">
<label>Address</label>
<input name="idbHost" type="text">
<span class="pure-form-message">
IP or hostname of the influxdb server
<label>Server</label>
<input name="idbHost" type="text" required >
<span class="pure-form-message-inline">
IP or hostname
</span>
</div>

Expand All @@ -34,12 +34,12 @@ <h2>

<div class="pure-control-group">
<label>Database</label>
<input name="idbDatabase" type="text">
<input name="idbDatabase" type="text" required >
</div>

<div class="pure-control-group">
<label>Username</label>
<input name="idbUsername" type="text" autocomplete="off">
<input name="idbUsername" type="text" autocomplete="off" required >
</div>

<div class="pure-control-group">
Expand Down

0 comments on commit 14b05e6

Please sign in to comment.