Blame view

app/partials/accountSetting/accountSetting.html 5.06 KB
3a9f4472b   Rishav   Implement contact...
1
2
3
4
5
6
7
8
9
10
11
12
13
  <div class="col-xs-12 col-md-11">
     <div class="row" style="margin-left:0px">
        <div class="col-md-5">
           <div class="widget">
              <div class="widget-header">
                 <i class="fa fa-user" aria-hidden="true"></i>
                 <h3>Account Sertting</h3>
              </div>
              <!-- /widget-header -->
              <div class="widget-content">
                 <h3 style="color: #666;margin-left: 10px;">Castle & Cooke FBO</h3></br>
                 <form role="form">
                      <div class="col-sm-6">
bb639860c   Rishav   account setting p...
14
15
16
                              <div class="form-group"><label>Username</label> <input type="email" placeholder="Username" ng-model="userData.email" class="form-control"></div>
                              <div class="form-group"><label>First Name</label> <input type="text" placeholder="First Name" ng-model="userData.firstName" class="form-control"></div>
                              <div class="form-group"><label>Last Name</label> <input type="text" placeholder="Last Name" ng-model="userData.lastName" class="form-control"></div>
3a9f4472b   Rishav   Implement contact...
17
18
19
                      </div>
  
                      <div class="col-sm-6">
bb639860c   Rishav   account setting p...
20
21
22
                          <!-- <div class="form-group"><label>Password</label> <input type="password" ng-model="userData.password" placeholder="Password" class="form-control"></div> -->
                          <div class="form-group"><label>Phone</label> <input type="tel" ng-model="userData.phone" placeholder="Phone" class="form-control"></div>
                          <div class="form-group"><label>Mobile</label> <input type="tel" ng-model="userData.mobile" placeholder="Mobile" class="form-control"></div>
3a9f4472b   Rishav   Implement contact...
23
24
25
26
27
28
29
30
                      </div>
                      <div class="col-xs-12">
                        <div class="col-xs-12">
                          <div class="form-group">
                              <div class="row">
                                <div class="col-md-5">
                                  <label class="new-input-label"><b>Fuel Types Offered&nbsp;</b></label>
                                </div>
bb639860c   Rishav   account setting p...
31
32
33
34
35
                                <div class="col-md-7" >
                                  <label ng-repeat="product in productList" style="width: 100%; font-weight: normal;">
                                    <!-- <input type="checkbox" ng-model="product.status" ng-click="checkProduct(product)"> {{product.name}}<br> -->
                                    <input type="checkbox" id="Weekdays" ng-model="product.status" ng-click="checkProduct(productList, product, $index)">{{product.name}}
                                  </label>
3a9f4472b   Rishav   Implement contact...
36
37
38
39
40
                                </div>
                              </div>
                          </div>
                        </div>
                      </div>
bb639860c   Rishav   account setting p...
41
42
43
44
45
                      <div class="clearfix"></div>
                      <div class="row" style="text-align: center;">
                          <button type="button" class="btn btn-primary" ng-click="updateUser()">Save</button>
                          <button type="button" class="btn btn-default">Cancel</button>
                      </div>
3a9f4472b   Rishav   Implement contact...
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
                  </form>
              </div>
              <!-- /widget-content -->
           </div>
           <!-- /widget -->
        </div>
        <div class="col-md-7">
           <div class="widget">
              <div class="widget-header">
                 <i class="fa fa-tasks" aria-hidden="true"></i>
                 <h3>Additional User Accounts</h3>
                 <div class="pull-right">
                     <button type="submit" style="margin-top: 4px;margin-right: 9px;" data-toggle="modal" data-target="#vendor-modal-3" class="btn btn-success btn-sm"><i class="fa fa-plus" aria-hidden="true"></i> Add Contact</button>
                  </div>
                  <div class="clearfix"></div>
              </div>
              <!-- /widget-header -->
              <div class="widget-content">
                 <div class="table-responsive">
                     <table class="table table-bordered table-hover table-striped">
                        <thead>
                           <tr>
                              <th></th>
                              <th>First Name</th>
                              <th>Last Name</th>
                              <th>Email Username</th>
                              <th>Password</th>
                              <th>Control</th>
                           </tr>
                        </thead>
                        <tbody>
                           <tr>
                              <td rowspan="2">1</td>
                              <td>Mark</td>
                              <td>Otto</td>
                              <td>otto@email.com</td>
                              <td>@otto</td>
                              <td><input id="toggle-one2" checked type="checkbox" data-size="mini" data-width="55" data-toggle="toggle" data-on="Active" data-off="Deactive"></td>
                           </tr>
                        </tbody>
                     </table>
                  </div>
              </div>
              <!-- /widget-content -->
           </div>
           <!-- /widget -->
        </div>
        <!-- /span6 -->
     </div>
     <!-- /widget -->
  </div>
  <!-- /container -->
  <div class="clearfix"></div>