Skip to content

Commit

Permalink
bugfix in forms. (input type number was missing)
Browse files Browse the repository at this point in the history
  • Loading branch information
GumbyMan82 committed Apr 22, 2020
1 parent 21de6af commit b434ab7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ <h1 class="display-4">DeepSleepSensor</h1>
<div class="form-group row">
<label for="colFormAnalogInput" class="col-sm-2 col-form-label">Analog input</label>
<div class="col-sm-10">
<input type="text" class="form-control" name="AnalogInput" id="colFormANIN" placeholder="Analog Input" value="%ANALOG_INPUT%" required>
<input type="number" class="form-control" name="AnalogInput" id="colFormANIN" placeholder="Analog Input" value="%ANALOG_INPUT%" required>
<small class="form-text text-muted"># of the analog input the sensor is connected to</small>
</div>
</div>
<div class="form-group row">
<label for="colFormAnalogInput" class="col-sm-2 col-form-label">Trigger output</label>
<div class="col-sm-10">
<input type="text" class="form-control" name="TriggerOutput" id="colFormTrigger" placeholder="Trigger output" value="%TRIGGER_OUTPUT%" required>
<input type="number" class="form-control" name="TriggerOutput" id="colFormTrigger" placeholder="Trigger output" value="%TRIGGER_OUTPUT%" required>
<small class="form-text text-muted"># of the digital output for the sensor trigger</small>
</div>
</div>
Expand Down

0 comments on commit b434ab7

Please sign in to comment.