realms-wiki/realms/templates/account/index.html

14 lines
419 B
HTML
Raw Normal View History

2013-10-03 17:58:07 +03:00
{% extends 'layout.html' %}
{% block body %}
<h2>Account</h2>
2013-10-05 00:42:45 +03:00
<form method="POST" role="form">
2013-10-03 17:58:07 +03:00
<div class="form-group">
2013-10-05 00:42:45 +03:00
<label for="email" class="control-label">Email</label>
<input id="email" type="text" class="form-control" value="{{ session['user']['email'] }}" />
2013-10-03 17:58:07 +03:00
</div>
2013-10-05 00:42:45 +03:00
<input type="submit" class="btn btn-primary" value="Save">
2013-10-03 17:58:07 +03:00
</form>
{% endblock %}