ldapweb/webapp/templates/root.html

19 lines
656 B
HTML

{% extends 'basic.html' %}
{% block content %}
<div class="jumbotron" style="text-align: center">
<h1 style="margin-bottom: 20px;">Hello, {{ username }}!</h1>
<p>
You are now logged in. Choose one of the actions below:
</p>
<a class="btn btn-lg btn-primary" href="/vcard" role="button">
<span class="glyphicon glyphicon-user" aria-hidden="true"></span>
Edit your profile data &raquo;
</a>
<a class="btn btn-lg btn-primary" href="/passwd" role="button">
<span class="glyphicon glyphicon-lock" aria-hidden="true"></span>
Change your password &raquo;
</a>
</div>
</div>
{% endblock %}