aboutsummaryrefslogtreecommitdiff
path: root/app/views/mini_environments/new.html.erb
blob: 84d231623ef6202aebe6467bb9a493e674db99f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="row">
  <div class="col-md-8">
    <%= form_for @mini_environment,
                 url: { action: "create" },
                 html: { class: 'form-horizontal' } do |f| %>

      <div class="form-group">
        <%= f.label :name, class: 'col-sm-2 control-label' %>
        <div class="col-sm-10">
          <%= f.text_field :name, class: 'form-control' %>
        </div>
      </div>
      
      <div class="form-group">
        <div class="col-sm-offset-2 col-sm-10">
          <%= f.submit "Create", class: 'btn btn-lg btn-success' %>
        </div>
      </div>
    <% end %>
  </div>
</div>