30 lines
861 B
HTML
30 lines
861 B
HTML
<%! from django.utils.translation import ugettext as _ %>
|
|
<%namespace name='static' file='/static_content.html'/>
|
|
|
|
<%inherit file="../main.html" />
|
|
|
|
<%block name="pagetitle">${_("Student Profile")}</%block>
|
|
|
|
<%block name="js_extra">
|
|
<%static:js group='student_profile'/>
|
|
</%block>
|
|
|
|
<h1>Student Profile</h1>
|
|
|
|
<p>This is a placeholder for the student's profile page.</p>
|
|
|
|
<form id="name-change-form">
|
|
<input type="hidden" name="csrfmiddlewaretoken" value="${csrf_token}">
|
|
|
|
<label for="new-name">${_('Full Name')}</label>
|
|
<input id="new-name" type="text" name="new-name" value="" placeholder="Xsy" />
|
|
|
|
<div class="submit-button">
|
|
<input type="submit" id="name-change-submit" value="${_('Change My Name')}">
|
|
</div>
|
|
</form>
|
|
|
|
% if settings.FEATURES.get('ENABLE_THIRD_PARTY_AUTH'):
|
|
<%include file="third_party_auth.html" />
|
|
% endif
|