Sha256: 15513dda9833c7fd1d7599444f839fe6cc34d8ac445d470cf80de662aa1ad7d9
Contents?: true
Size: 1.17 KB
Versions: 3
Compression:
Stored size: 1.17 KB
Contents
<form ng-submit="addEdit()"> <div class="modal-header"> <h3> <i class="fa fa-user"></i> User</h3> </div> <div class="modal-body"> <div class="form-group"> <label for="exampleInputEmail1">Full name</label> <input type="text" class="form-control" ng-model="user.name" required placeholder="John Smith"> </div> <div class="form-group"> <label for="exampleInputEmail1">Email address</label> <input type="email" class="form-control" ng-model="user.email" required placeholder="Enter email"> </div> <div class="form-group"> <label>Password</label> <input type="password" class="form-control" ng-model="user.password" ng-required="user.id == null" placeholder="Password"> </div> <div class="checkbox" ng-if="is_admin"> <label> <input type="checkbox" ng-model="user.admin"> Admin <small class="text-muted"> - Admin users have permisions to all buckets and to user managment</small> </label> </div> </div> <div class="modal-footer"> <button class="btn btn-primary" type="submit">Save</button> <button type="button" class="btn btn-warning" ng-click="cancel()">Cancel</button> </div> </form>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
logman-0.1.0 | lib/console/static/app/user/user-modal.html |
logman-0.1.0.alpha | lib/console/static/app/user/user-modal.html |
logman-0.0.2 | lib/console/static/app/user/user-modal.html |