18 lines
469 B
HTML
18 lines
469 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}KeRS - Profile{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Profile</h1>
|
|
{% if user.is_authenticated %}
|
|
<p>Username: {{ username }}</p>
|
|
<label>Student number</label>
|
|
<input type="text" placeholder="1234567" value="{{ user.student_number }}"/>
|
|
<label>Real name</label>
|
|
<input type="text" value="{{ user.real_name }}">
|
|
<input type="submit" value="Save"/>
|
|
{% else %}
|
|
<p>Not logged in</p>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|