dashboard.html
11.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<style type="text/css">
.customErrorMessage{
color: #8a1f11;
font-weight: bold;
}
.customErrorInput{
background-color: rgb(251, 227, 228);
border: 1px solid #fbc2c4;
color: #8a1f11;
}
.redAstrick{
color: #8a1f11;
margin: 0 1px;
}
</style>
</div>
<div class="row wrapper border-bottom white-bg page-heading">
<div class="col-lg-4">
<!-- <h2 ng-click="editName()" ng-show="showCompany" style="cursor: pointer;">Tellus Institute</h2> -->
<div style="margin: 5px;" class="form-group">
<label>Company Name</label>
<input type="text" style="width:80%; float: left;" placeholder="Enter Company Name" ng-model="user.companyName" class="form-control companyNameError" ng-keyup="companyNameValid()">
<span class="redAstrick" style="margin: 0 5px;">*</span>
<label class="customErrorMessage" ng-show="comnayNameInvalid">This field is required.</label>
<div class="clearfix"></div>
</div>
</div>
<div class="col-lg-4" >
<div style="margin: 5px;" class="form-group">
<label>ICAO Code <span class="redAstrick" style="margin: 0 5px;">*</span></label> <label class="customErrorMessage" ng-show="icaoInvalid">This field is required.</label>
<input type="text" style="width:50%" placeholder="Enter ICAO" ng-model="user.icao" class="form-control icaoNameError" ng-keyup="icaoValid()">
<div class="clearfix"></div>
</div>
</div>
<div class="col-lg-4" style="margin-top: 25px; text-align: right;">
<button type="button" class="btn btn-default btn-sm" ui-sref="index.fboAdmin">Cancel</button>
<button type="button" class="btn btn-primary btn-sm" ng-click="userData()">Save Changes</button>
</div>
</div>
</div>
<div class="wrapper wrapper-content animated fadeInRight">
<div class="row">
<div class="col-lg-7">
<div class="ibox float-e-margins">
<div class="ibox-title">
<div class="pull-left">
<h5>Contact Information</h5>
</div>
<div class="pull-right my-toggle-switch">
<div class="switch">
<div class="onoffswitch">
<input type="checkbox" ng-checked="status === true" ng-model="status" ng-init="status = true" class="onoffswitch-checkbox" id="example1">
<label class="onoffswitch-label" for="example1">
<span class="onoffswitch-inner"></span>
<span class="onoffswitch-switch"></span>
</label>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div class="ibox-content">
<div class="row">
<form role="form">
<div class="col-sm-6 b-r">
<!-- <div class="form-group"><label>Company Name</label> <input type="text" placeholder="Company Name" ng-model="user.companyName" class="form-control"></div> -->
<div class="form-group">
<label>Email Username <span class="redAstrick">*</span></label>
<label class="customErrorMessage" ng-show="emailInvalid">This field is required.</label>
<input type="email" placeholder="Email Username" ng-model="user.email" class="form-control emailIdError" ng-blur="checkUsername()" ng-keyup="emailValid()">
</div>
<div class="form-group">
<label>First Name</label>
<input type="text" placeholder="First Name" ng-model="user.firstName" class="form-control">
</div>
<div class="form-group">
<label>Last Name</label>
<input type="text" placeholder="Last Name" ng-model="user.lastName" class="form-control">
</div>
<!-- <div>
<button class="btn btn-sm btn-primary pull-right m-t-n-xs" type="submit"><strong>Log in</strong></button>
<label> <input type="checkbox" class="i-checks"> Remember me </label>
</div> -->
</div>
<div class="col-sm-6">
<div class="form-group">
<label>Password <span class="redAstrick">*</span></label>
<label class="customErrorMessage" ng-show="passwordInvalid">This field is required.</label>
<input type="password" ng-model="user.password" placeholder="Password" class="form-control invalidPassword" ng-keyup="passwordValid()">
</div>
<div class="form-group">
<label>Phone</label>
<input type="number" ng-model="user.phone" placeholder="Phone" class="form-control">
</div>
<div class="form-group">
<label>Mobile</label>
<input type="number" ng-model="user.mobile" placeholder="Mobile" class="form-control">
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<div class="col-lg-5">
<div class="ibox float-e-margins">
<div class="ibox-title">
<h5>Client Notes</h5>
</div>
<div class="ibox-content">
<div class="row">
<form role="form">
<textarea class="form-control" rows="10" ng-model="user.clientNote" id="comment"></textarea>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="wrapper wrapper-content animated fadeInRight">
<div class="row">
<div class="col-lg-12">
<div class="ibox float-e-margins">
<div class="ibox-title" style="padding: 5px 15px 5px 15px;">
<div class="col-lg-8">
<h5 style="line-height: 34px;margin-bottom: 0;">Feature Account Control</h5>
</div>
<div class="col-lg-4">
<div class="form-group">
<label class="col-sm-2 control-label" style="line-height: 34px;margin-bottom: 0;">Level</label>
<div class="col-sm-10">
<select class="form-control m-b" name="account" ng-model="feature.level" style="margin-bottom: 0;">
<option value="silver" selected>Silver</option>
<option value="gold">Gold</option>
</select>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div class="ibox-content">
<div class="row">
<form role="form">
<div class="col-lg-3">
<label style="color: #1ab394;">Modularized</label>
<div>
<label> <input type="checkbox" class="i-checks" ng-change="enableEssId()" ng-model="feature.essintaPosSystem" icheck> Essinta POS system </label>
</div>
<div>
<label> <input type="checkbox" class="i-checks" ng-model="feature.acuQuote" icheck> AcuQuote </label>
</div>
<div>
<label> <input type="checkbox" class="i-checks" ng-model="feature.acuTrack" icheck> AcuTrack </label>
</div>
<div>
<label> <input type="checkbox" class="i-checks" ng-model="feature.fuelProgram" icheck> Fuel Program </label>
</div>
<div>
<label> <input type="checkbox" class="i-checks" ng-model="feature.amstatIntegration" icheck> AMSTAT Integration </label>
</div>
<div>
<label> <input type="checkbox" class="i-checks" ng-model="feature.posAccountingIntegration" icheck> POS Accounting Integration </label>
</div>
<div>
<label> <input type="checkbox" class="i-checks" ng-model="feature.posVeederRootIntegration" icheck> POS VeederRoot Integration </label>
</div>
</div>
<div class="col-lg-9" style="padding: 0;">
<div class="col-lg-6">
<div class="form-group" style="margin-top: 18px;" id="esAccId">
<label class="control-label pull-left" style="color: #1ab394;line-height: 34px;">Essinta Account UID</label>
<div class="col-lg-6">
<input type="text" placeholder="" ng-disabled="essAccountId" style="border-color: #1ab394;" class="form-control" ng-model="feature.essintaAccountUid">
</div>
</div>
</div>
<div class="col-lg-6">
<div class="form-group" style="margin-top: 18px;">
<label class="control-label pull-left" style="color: #ffa149;line-height: 34px;">Additional Device Licences</label>
<div class="col-lg-6">
<input type="text" placeholder="" style="border-color: #ffa149 !important;" ng-model="feature.additionalLicences" class="form-control">
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>