{% block css %}
{% endblock %} {% block customcss %} {% endblock %}
{{ title }} | Law Network Viz
{% block navbar %}
Toggle navigation
Law Network Viz
Home
About
{% if not current_user.is_authenticated %}
Login
Register
{% endif %} {% if current_user.is_authenticated %}
Visualization
{% endif %}
{% if current_user.is_authenticated %}
Hi!, {{ current_user.username }}
Log Out
{% endif %}
{% endblock %}
{% with messages = get_flashed_messages() %} {% if messages %} {% for message in messages %} {% if 'Invalid' in message %}
{{ message }}
{% endif %} {% if 'successfully' in message %}
{{ message }}
{% endif %} {% endfor %} {% endif %} {% endwith %}
{% block body %} {% endblock %} {% block script %} {% endblock %}