extends ../layout block content section#partial .container .row .col-sm-8.col-sm-offset-2.text-center h3 Profile hr .row form.form-horizontal(action='/account/profile', method='POST') input(type='hidden', name='_csrf', value=_csrf) .form-group label.col-sm-3.control-label(for='email') Email .col-sm-7 input.form-control(type='email', name='email', id='email', value='#{user.email}') .form-group label.col-sm-3.control-label(for='name') Name .col-sm-7 input.form-control(type='text', name='name', id='name', value='#{user.profile.name}') .form-group label.col-sm-3.control-label(for='username') Username .col-sm-7 input.form-control(type='text', name='username', id='username', value='#{user.profile.username}') .form-group label.col-sm-3.control-label(for='location') Location .col-sm-7 input.form-control(type='text', name='location', id='location', value='#{user.profile.location}') .form-group label.col-sm-3.control-label(for='website') Website .col-sm-7 input.form-control(type='text', name='website', id='website', value='#{user.profile.website}') .form-group label.col-sm-3.control-label(for='bio') Bio .col-sm-7 input.form-control(type='text', name='bio', id='bio', value='#{user.profile.bio}') .form-group label.col-sm-3.control-label(for='gravatar') Gravatar .col-sm-4 img(src="#{user.gravatar()}", class='profile', width='100', height='100') .form-group .col-sm-offset-3.col-sm-4 button.btn.btn.btn-primary(type='submit') i.fa.fa-pencilr | Update Profile .row .col-sm-8.col-sm-offset-2.text-center h3 Password hr .row form.form-horizontal(action='/account/password', method='POST') input(type='hidden', name='_csrf', value=_csrf) .form-group label.col-sm-3.control-label(for='password') New Password .col-sm-7 input.form-control(type='password', name='password', id='password') .form-group label.col-sm-3.control-label(for='confirmPassword') Confirm Password .col-sm-7 input.form-control(type='password', name='confirmPassword', id='confirmPassword') .form-group .col-sm-offset-3.col-sm-4 button.btn.btn-primary(type='submit') i.fa.fa-lock | Change Password .row .col-sm-8.col-sm-offset-2.text-center h3 Delete Account hr .row form.form-horizontal(action='/account/delete', method='POST') .form-group p.col-sm-offset-3.col-sm-4 You can delete your account, but keep in mind this action is irreversible. input(type='hidden', name='_csrf', value=_csrf) .col-sm-offset-3.col-sm-4 button.btn.btn-danger(type='submit') i.fa.fa-trash | Delete my account