14 lines
355 B
Plaintext
14 lines
355 B
Plaintext
|
<% provide(:title, "Edit user") %>
|
||
|
<% provide(:button_text, 'Save changes') %>
|
||
|
<h1>Update your profile</h1>
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-md-6 col-md-offset-3">
|
||
|
<%= render 'form' %>
|
||
|
<div class="gravatar_edit">
|
||
|
<%= gravatar_for @user %>
|
||
|
<a href="https://gravatar.com/emails" target="_blank">change</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|