Edit profile Edit profile
Cancel

Edit profile

${form.begin(multipart=True)} ${form.csrf_token()}
${form.errorlist('email')} ${form.text('email')}
${form.errorlist('nickname')} ${form.text('nickname')}
${form.errorlist('picture')} ${form.file('picture')}
${form.errorlist('firstname')} ${form.text('firstname')}
${form.errorlist('lastname')} ${form.text('lastname')}
${form.errorlist('gender')} ${form.select('gender', ['male', 'female'])}
${form.errorlist('birth_date')} ${form.date('birth_date', date_format='%d/%m/%Y')}
${form.errorlist('height')} ${form.text('height')}
${form.errorlist('weight')} ${form.text('weight')}

${form.errorlist('bio')} ${form.textarea('bio', rows=10, cols=50)}

All dates and times will be formatted for this timezone

${form.errorlist('timezone')} ${form.select('timezone', timezones)}

All texts in the user interface will appear in this language

${form.errorlist('locale')} ${form.select('locale', available_locale_names, selected_value=current_locale)}

${form.submit("submit", localizer.translate(_('Save')), **{'class':"button button-normal"})}

${form.end()}