25 lines
875 B
Plaintext
25 lines
875 B
Plaintext
<form novalidate
|
|
name="vm.form"
|
|
ng-submit="vm.form.$valid && vm.submit()">
|
|
<fieldset ng-disabled="vm.submitting">
|
|
<error-list errors="vm.errorMessages"></error-list>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="form-group" form-group-validation="Month">
|
|
<label for="Month" class="control-label">Month</label>
|
|
<input name="Month" type="text"
|
|
ng-model="vm.query"
|
|
required
|
|
data-min-view="1"
|
|
data-date-format="M/yy"
|
|
class="form-control"
|
|
bs-datepicker="" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<button class="btn btn-success pull-right">Submit</button>
|
|
</fieldset>
|
|
</form> |