url as input fix

pull/116/head v0.79.98
Hunter Long 2018-12-07 10:18:25 -08:00
parent 890de5b50d
commit fcae7f2667
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
<div class="form-group row"> <div class="form-group row">
<label for="service_url" class="col-sm-4 col-form-label">{{if (eq .Type "tcp") or (eq .Type "udp")}}Host/IP Address{{else}}Application Endpoint (URL){{end}}</label> <label for="service_url" class="col-sm-4 col-form-label">{{if (eq .Type "tcp") or (eq .Type "udp")}}Host/IP Address{{else}}Application Endpoint (URL){{end}}</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input type="url" name="domain" class="form-control" id="service_url" value="{{.Domain}}" placeholder="https://google.com" required autocapitalize="none" spellcheck="false"> <input type="text" name="domain" class="form-control" id="service_url" value="{{.Domain}}" placeholder="https://google.com" required autocapitalize="none" spellcheck="false">
<small class="form-text text-muted">Statping will attempt to connect to this URL</small> <small class="form-text text-muted">Statping will attempt to connect to this URL</small>
</div> </div>
</div> </div>