diff options
author | Phil Hughes <me@iamphill.com> | 2016-02-29 17:19:00 +0000 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2016-03-03 16:13:55 -0500 |
commit | 1efe1054150177ac5eb31ff85e2c18c5856d480a (patch) | |
tree | 4e6b0caf98a6fc28853d5da3ce9a0fe877ca25cf /app/views/profiles/keys/_form.html.haml | |
parent | ba869ae50d0c43867f7d34a4f7e08520c1e4c7f1 (diff) | |
download | gitlab-ce-1efe1054150177ac5eb31ff85e2c18c5856d480a.tar.gz |
SSH keys settings
Closes #13860
Diffstat (limited to 'app/views/profiles/keys/_form.html.haml')
-rw-r--r-- | app/views/profiles/keys/_form.html.haml | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/app/views/profiles/keys/_form.html.haml b/app/views/profiles/keys/_form.html.haml index 2a8800de60e..4d78215ed3c 100644 --- a/app/views/profiles/keys/_form.html.haml +++ b/app/views/profiles/keys/_form.html.haml @@ -1,5 +1,5 @@ %div - = form_for [:profile, @key], html: { class: 'form-horizontal js-requires-input' } do |f| + = form_for [:profile, @key], html: { class: 'js-requires-input' } do |f| - if @key.errors.any? .alert.alert-danger %ul @@ -7,13 +7,11 @@ %li= msg .form-group - = f.label :key, class: 'control-label' - .col-sm-10 - = f.text_area :key, class: "form-control", rows: 8, autofocus: true, required: true + = f.label :key, class: 'label-light' + = f.text_area :key, class: "form-control", rows: 8, required: true .form-group - = f.label :title, class: 'control-label' - .col-sm-10= f.text_field :title, class: "form-control", required: true + = f.label :title, class: 'label-light' + = f.text_field :title, class: "form-control", required: true - .form-actions + .prepend-top-default = f.submit 'Add key', class: "btn btn-create" - = link_to "Cancel", profile_keys_path, class: "btn btn-cancel" |