<div class="modal-header">
<button type="button" class="close" onClick="reset_form()" data-dismiss="modal" aria-hidden="true">×</button>
- <h4 class="modal-title">Setup User</h4>
- <div class="spinner spinner-32px spinner-h-center pull-left" hidden="true"></div>
+ <div>
+ <div class="col-sm-6"> <h4 class="modal-title">Setup User</h4> </div>
+ <div class="spinner spinner-32px spinner-h-center col-sm-1" hidden="true"></div>
+ </div>
+ <br/>
</div>
<div class="modal-body">
<% disable_url_prefix = identity_url_prefix != nil %>
<% selected_repo = @current_selections[:repo_name] %>
<% selected_vm = @current_selections[:vm_uuid] %>
+ <% groups = @current_selections[:groups] %>
<input id="user_uuid" maxlength="250" name="user_uuid" type="hidden" value="<%=uuid%>">
<div class="form-group">
- <label for="email">Email</label>
+ <label for="email">Email</label>
<% if disable_email %>
<input class="form-control" id="email" maxlength="250" name="email" type="text" value="<%=email%>" disabled>
<% else %>
<% end %>
</div>
<div class="form-group">
- <label for="repo_name">Repository Name</label>
+ <label for="repo_name">Repository Name and Shell Login</label>
<input class="form-control" id="repo_name" maxlength="250" name="repo_name" type="text" value="<%=selected_repo%>">
</div>
<div class="form-group">
<label for="vm_uuid">Virtual Machine</label>
<select class="form-control" name="vm_uuid">
<option value="" <%= 'selected' unless selected_vm %>>
- Choose One:
- </option>
+ Choose One:
+ </option>
<% @vms.each do |vm| %>
<option value="<%=vm.uuid%>"
- <%= 'selected' if selected_vm == vm.uuid %>>
- <%= vm.hostname %>
- </option>
+ <%= 'selected' if selected_vm == vm.uuid %>>
+ <%= vm.hostname %>
+ </option>
<% end %>
</select>
</div>
+ <div class="groups-group">
+ <label for="groups">Groups for Virtual Machine (comma separated list)</label>
+ <input class="form-control" id="groups" maxlength="250" name="groups" type="text" value="<%=groups%>">
+ </div>
</div>
<div class="modal-footer">
- <button type="submit" id="register" class="btn btn-primary" autofocus>Submit</button>
<button class="btn btn-default" onClick="reset_form()" data-dismiss="modal" aria-hidden="true">Cancel</button>
+ <button type="submit" id="register" class="btn btn-primary" autofocus>Submit</button>
</div>
<% end #form %>