1 <div class="modal-dialog">
2 <div class="modal-content">
4 <%= form_tag setup_user_path, {id: 'setup_form', name: 'setup_form', method: 'get',
5 class: 'form-search', remote: true} do %>
7 <div class="modal-header">
8 <button type="button" class="close" onClick="reset_form()" data-dismiss="modal" aria-hidden="true">×</button>
9 <h4 class="modal-title">Setup User</h4>
12 <div class="modal-body">
14 <% uuid = @object.uuid %>
15 <% email = @object.email %>
17 <% disable_email = uuid != nil %>
18 <% identity_url_prefix = @current_selections[:identity_url_prefix] %>
19 <% disable_url_prefix = identity_url_prefix != nil %>
20 <% selected_repo = @current_selections[:repo_name] %>
21 <% selected_vm = @current_selections[:vm_uuid] %>
23 <input id="user_uuid" maxlength="250" name="user_uuid" type="hidden" value="<%=uuid%>">
24 <div class="form-group">
25 <label for="email">Email</label>
26 <% if disable_email %>
27 <input class="form-control" id="email" maxlength="250" name="email" type="text" value="<%=email%>" disabled>
29 <input class="form-control" id="email" maxlength="250" name="email" type="text">
32 <div class="form-group">
33 <label for="openid_prefix">Identity URL Prefix</label>
34 <% if disable_url_prefix %>
35 <input class="form-control" id="openid_prefix" maxlength="250" name="openid_prefix" type="text"
36 value="<%=identity_url_prefix%>" disabled=true>
38 <input class="form-control" id="openid_prefix" maxlength="250" name="openid_prefix" type="text"
39 value="<%= Rails.configuration.default_openid_prefix %>">
42 <div class="form-group">
43 <label for="repo_name">Repository Name</label>
44 <input class="form-control" id="repo_name" maxlength="250" name="repo_name" type="text" value="<%=selected_repo%>">
46 <div class="form-group">
47 <label for="vm_uuid">Virtual Machine</label>
48 <select class="form-control" name="vm_uuid">
49 <option value="" <%= 'selected' unless selected_vm %>>
52 <% @vms.each do |vm| %>
53 <option value="<%=vm.uuid%>"
54 <%= 'selected' if selected_vm == vm.uuid %>>
62 <div class="modal-footer">
63 <button type="submit" id="register" class="btn btn-primary" autofocus>Submit</button>
64 <button class="btn btn-default" onClick="reset_form()" data-dismiss="modal" aria-hidden="true">Cancel</button>