2014-11-02 20:52:19 +01:00
|
|
|
.container.j2-page
|
|
|
|
= render 'settings_tabs'
|
|
|
|
.col-md-9.col-xs-12.col-sm-9
|
2014-12-13 16:03:18 +01:00
|
|
|
= render 'layouts/messages'
|
2014-11-11 20:01:24 +01:00
|
|
|
.panel.panel-default
|
|
|
|
.panel-body
|
2014-11-29 23:26:55 +01:00
|
|
|
= bootstrap_form_for(current_user, url: {action: "edit"}, method: "patch") do |f|
|
2014-11-11 20:01:24 +01:00
|
|
|
|
|
|
|
= f.text_field :display_name, label: "Your name"
|
|
|
|
|
2014-11-29 22:34:11 +01:00
|
|
|
= f.text_field :motivation_header, label: "Motivation header"
|
|
|
|
|
2014-12-01 20:47:10 +01:00
|
|
|
= f.text_field :website, label: "Website"
|
|
|
|
|
|
|
|
= f.text_field :location, label: "Location"
|
|
|
|
|
|
|
|
= f.text_area :bio, label: "Bio"
|
|
|
|
|
2014-11-11 20:01:24 +01:00
|
|
|
= f.submit "Save settings", class: 'btn btn-primary'
|