12 lines
406 B
Plaintext
12 lines
406 B
Plaintext
.container.j2-page
|
|
= render 'settings_tabs'
|
|
.col-md-9.col-xs-12.col-sm-9
|
|
.panel.panel-default
|
|
.panel-body
|
|
= bootstrap_form_for(current_user, url: {action: "edit"}, method: "patch") do |f|
|
|
|
|
= f.text_field :display_name, label: "Your name"
|
|
|
|
= f.text_field :motivation_header, label: "Motivation header"
|
|
|
|
= f.submit "Save settings", class: 'btn btn-primary' |