9 lines
296 B
Plaintext
9 lines
296 B
Plaintext
= form_with model: @contest do |form|
|
|
.row.mb-3
|
|
.col
|
|
.form-floating
|
|
= form.text_field :name, autocomplete: "off", class: "form-control"
|
|
= form.label :name, class: "required"
|
|
.row.mt-4
|
|
.col
|
|
= form.submit t("helpers.buttons.create"), class: "btn btn-primary" |