{% extends "base.html" %} | |
{% import 'bootstrap/wtf.html' as wtf %} | |
{% block app_content %} | |
<div class="jumbotron"> | |
{% if current_user.is_anonymous %} | |
<h3>Please register to access full functionality</h3> | |
<p class="lead"></p> | |
<p><a class="btn btn-lg btn-success" href="register" role="button">Register</a></p> | |
{% else %} | |
<h4>Welcome {{ current_user.username }}!</h4> | |
{% endif %} | |
</div> | |
{% endblock %} |