re: #5002
parent
d4055ddaef
commit
194716cd68
@ -1,13 +1,32 @@
|
|||||||
<form class="form-inline">
|
<form class="form">
|
||||||
<div class="form-group text-center">
|
<div class="row">
|
||||||
<label for="days">Ban Length</label>
|
<div class="col-xs-4">
|
||||||
<input class="form-control" name="length" type="number" min="1" value="1" /><br />
|
<div class="form-group">
|
||||||
<label>Hours</label>
|
<label for="length">Ban Length</label>
|
||||||
<input type="radio" name="unit" value="0" checked />
|
<input class="form-control" id="length" name="length" type="number" min="1" value="1" />
|
||||||
<label>Days</label>
|
</div>
|
||||||
<input type="radio" name="unit" value="1" />
|
</div>
|
||||||
|
<div class="col-xs-8">
|
||||||
|
<div class="form-group">
|
||||||
|
<label for="reason">Reason <span class="text-muted">(Optional)</span></label>
|
||||||
|
<input type="text" class="form-control" id="reason" name="reason" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-sm-4 text-center">
|
||||||
|
<div class="form-group units">
|
||||||
|
<label>Hours</label>
|
||||||
|
<input type="radio" name="unit" value="0" checked />
|
||||||
|
|
||||||
|
<label>Days</label>
|
||||||
|
<input type="radio" name="unit" value="1" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm-8">
|
||||||
|
<p class="help-block">
|
||||||
|
Enter the length of time for the ban. Note that a time of 0 will be a considered a permanent ban.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<p class="help-block">
|
|
||||||
Enter the length of time for the ban. Note that a time of 0 will be a considered a permanent ban.
|
|
||||||
</p>
|
|
||||||
</form>
|
</form>
|
Loading…
Reference in New Issue