24 lines
1.2 KiB
Text
24 lines
1.2 KiB
Text
= form_for application, url: doorkeeper_submit_path(application), html: {class: 'form-horizontal', role: 'form'} do |f|
|
|
- if application.errors.any?
|
|
.alert.alert-danger{"data-alert" => ""}
|
|
%p Whoops! Check your form for possible errors
|
|
= content_tag :div, class: "form-group#{' has-error' if application.errors[:name].present?}" do
|
|
= f.label :name, class: 'col-sm-2 control-label'
|
|
.col-sm-10
|
|
= f.text_field :name, class: 'form-control'
|
|
= doorkeeper_errors_for application, :name
|
|
= content_tag :div, class: "form-group#{' has-error' if application.errors[:redirect_uri].present?}" do
|
|
= f.label :redirect_uri, class: 'col-sm-2 control-label'
|
|
.col-sm-10
|
|
= f.text_area :redirect_uri, class: 'form-control'
|
|
= doorkeeper_errors_for application, :redirect_uri
|
|
%span.help-block
|
|
Use one line per URI
|
|
- if Doorkeeper.configuration.native_redirect_uri
|
|
%span.help-block
|
|
Use
|
|
%code= Doorkeeper.configuration.native_redirect_uri
|
|
for local tests
|
|
.form-actions
|
|
= f.submit 'Submit', class: "btn btn-primary wide"
|
|
= link_to "Cancel", applications_profile_path, class: "btn btn-default"
|