Add 'apps/arv-web/' from commit 'f9732ad8460d013c2f28363655d0d1b91894dca5'
[arvados.git] / apps / workbench / app / views / users / _setup_popup.html.erb
1 <div class="modal-dialog modal-with-loading-spinner">
2   <div class="modal-content">
3
4     <%= form_tag setup_user_path, {id: 'setup_form', name: 'setup_form', method: 'get',
5         class: 'form-search', remote: true} do %>
6
7     <div class="modal-header">
8       <button type="button" class="close" onClick="reset_form()" data-dismiss="modal" aria-hidden="true">&times;</button>
9       <div>
10         <div class="col-sm-6"> <h4 class="modal-title">Setup User</h4> </div>
11         <div class="spinner spinner-32px spinner-h-center col-sm-1" hidden="true"></div>
12       </div>
13       <br/>
14     </div>
15
16     <div class="modal-body">
17       <% if @object%>
18         <% uuid = @object.uuid %>
19         <% email = @object.email %>
20       <% end %>
21       <% disable_email = uuid != nil %>
22       <% identity_url_prefix = @current_selections[:identity_url_prefix] %>
23       <% disable_url_prefix = identity_url_prefix != nil %>
24       <% selected_repo = @current_selections[:repo_name] %>
25       <% selected_vm = @current_selections[:vm_uuid] %>
26
27       <input id="user_uuid" maxlength="250" name="user_uuid" type="hidden" value="<%=uuid%>">
28       <div class="form-group">
29         <label for="email">Email</label>
30         <% if disable_email %>
31         <input class="form-control" id="email" maxlength="250" name="email" type="text" value="<%=email%>" disabled>
32         <% else %>
33         <input class="form-control" id="email" maxlength="250" name="email" type="text">
34         <% end %>
35       </div>
36       <div class="form-group">
37         <label for="openid_prefix">Identity URL Prefix</label>
38         <% if disable_url_prefix %>
39         <input class="form-control" id="openid_prefix" maxlength="250" name="openid_prefix" type="text"
40                value="<%=identity_url_prefix%>" disabled=true>
41         <% else %>
42         <input class="form-control" id="openid_prefix" maxlength="250" name="openid_prefix" type="text"
43                value="<%= Rails.configuration.default_openid_prefix %>">
44         <% end %>
45       </div>
46       <div class="form-group">
47         <label for="repo_name">Repository Name and Shell Login</label>
48         <input class="form-control" id="repo_name" maxlength="250" name="repo_name" type="text" value="<%=selected_repo%>">
49       </div>
50       <div class="form-group">
51         <label for="vm_uuid">Virtual Machine</label>
52         <select class="form-control" name="vm_uuid">
53           <option value="" <%= 'selected' unless selected_vm %>>
54             Choose One:
55           </option>
56           <% @vms.each do |vm| %>
57             <option value="<%=vm.uuid%>"
58                     <%= 'selected' if selected_vm == vm.uuid %>>
59               <%= vm.hostname %>
60             </option>
61           <% end %>
62         </select>
63       </div>
64     </div>
65
66     <div class="modal-footer">
67       <button type="submit" id="register" class="btn btn-primary" autofocus>Submit</button>
68       <button class="btn btn-default" onClick="reset_form()" data-dismiss="modal" aria-hidden="true">Cancel</button>
69     </div>
70
71     <% end #form %>
72   </div>
73 </div>