branch master changes
This commit is contained in:
parent
8e1ca81673
commit
92ed2a4535
@ -5,6 +5,16 @@
|
|||||||
box-shadow: 0px 0px 2px #007AFF;
|
box-shadow: 0px 0px 2px #007AFF;
|
||||||
padding: 0.5em 0.6em;
|
padding: 0.5em 0.6em;
|
||||||
}
|
}
|
||||||
|
.thumb {
|
||||||
|
width: 130px;
|
||||||
|
height: 140px;
|
||||||
|
margin: 2px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.uploader {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<!-- start: PAGE TITLE -->
|
<!-- start: PAGE TITLE -->
|
||||||
<section id="page-title">
|
<section id="page-title">
|
||||||
@ -156,7 +166,7 @@
|
|||||||
Branch Code <span class="symbol required"></span>
|
Branch Code <span class="symbol required"></span>
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
<input type="text" placeholder="Enter Branch Code" tabindex="1" class="form-control" name="branchcode" ng-model="myModel.branchCode"
|
<input disallow-spaces type="text" placeholder="Enter Branch Code" tabindex="1" class="form-control" id="branchcode" name="branchcode" ng-model="myModel.branchCode"
|
||||||
ng-pattern="/^[a-zA-Z0-9.\s]*$/" required/>
|
ng-pattern="/^[a-zA-Z0-9.\s]*$/" required/>
|
||||||
<span class="error text-small block" ng-if="Form.branchcode.$dirty && Form.branchcode.$error.required">Branch code is required</span>
|
<span class="error text-small block" ng-if="Form.branchcode.$dirty && Form.branchcode.$error.required">Branch code is required</span>
|
||||||
<span class="error text-small block" ng-if="Form.branchcode.$dirty && Form.branchcode.$error.pattern">Invalid branch code </span>
|
<span class="error text-small block" ng-if="Form.branchcode.$dirty && Form.branchcode.$error.pattern">Invalid branch code </span>
|
||||||
@ -234,6 +244,22 @@
|
|||||||
<!--<span class="success text-small"-->
|
<!--<span class="success text-small"-->
|
||||||
<!--ng-if="Form.address.$valid">Thank You!</span>-->
|
<!--ng-if="Form.address.$valid">Thank You!</span>-->
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-md-4 form-group"
|
||||||
|
ng-class="{'has-error':Form.feesTitle.$dirty && Form.feesTitle.$invalid, 'has-success':Form.feesTitle.$valid}">
|
||||||
|
<label>
|
||||||
|
Fees Receipt Title <span class="symbol required"></span>
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<input type="text" capitalize placeholder="Enter Fees Receipt Title"
|
||||||
|
tabindex="8" class="form-control" name="feesTitle"
|
||||||
|
ng-model="myModel.feesTitle" ng-pattern="/^[a-zA-Z0-9-._()/\s]*$/" required/>
|
||||||
|
<span class="error text-small block"
|
||||||
|
ng-if="Form.feesTitle.$dirty && Form.feesTitle.$error.required">Fees receipt title is required</span>
|
||||||
|
<span class="error text-small block"
|
||||||
|
ng-if="Form.feesTitle.$dirty && Form.feesTitle.$error.pattern">Invalid Fees receipt title </span>
|
||||||
|
<!--<span class="success text-small"-->
|
||||||
|
<!--ng-if="Form.feesTitle.$valid">Thank You!</span>-->
|
||||||
|
</div>
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<label>
|
<label>
|
||||||
Active/De-Active
|
Active/De-Active
|
||||||
@ -257,7 +283,9 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-md-3">
|
</div>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-6">
|
||||||
<form name="Form" id="form1" novalidate ng-submit="form.submit(Form,myModel)" method="post">
|
<form name="Form" id="form1" novalidate ng-submit="form.submit(Form,myModel)" method="post">
|
||||||
<div class="file-upload">
|
<div class="file-upload">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@ -285,18 +313,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<input type="file" accept="image/*" file-upload onchange="angular.element(this).scope().imageUpload(event)" />
|
<input type="file" accept="image/*" file-upload onchange="angular.element(this).scope().imageUpload(event)" />
|
||||||
<style>
|
|
||||||
.thumb {
|
|
||||||
width: 130px;
|
|
||||||
height: 140px;
|
|
||||||
margin: 18px;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.uploader {
|
|
||||||
clear: both;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user