summaryrefslogtreecommitdiff
path: root/app/views/projects/environments/new.html.haml
blob: c7abac6e49f87886e9c4eceb5173db92aa7fb5ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- page_title "New Environment"
= render "projects/pipelines/head"

.row.prepend-top-default.append-bottom-default
  .col-lg-3
    %h4.prepend-top-0
      New Environment

  = form_for @environment, url: namespace_project_environments_path(@project.namespace, @project), html: { id: "new-environment-form", class: "col-lg-9 js-new-environment-form js-requires-input" } do |f|
    = form_errors(@environment)
    .form-group
      = f.label :ref, 'Environment name', class: 'label-light'
      = f.text_field :name, required: true, class: 'form-control'
    = f.submit 'Create environment', class: 'btn btn-create'
    = link_to "Cancel", namespace_project_environments_path(@project.namespace, @project), class: "btn btn-cancel"