mirror of
https://github.com/avatao-content/test-tutorial-framework
synced 2025-04-03 10:32:40 +00:00
10 lines
265 B
HTML
10 lines
265 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h2>Welcome, {{session.username}}</h2>
|
|
<p>You have successfully logged in!</p>
|
|
<a href="{{get_url('logout')}}" class="btn btn-default" >
|
|
<span class="glyphicon glyphicon-log-out"></span> Logout
|
|
</a>
|
|
{% endblock %}
|