14 lines
365 B
HTML
14 lines
365 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block left_pannel %}
|
|
{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
{%if not current_user.is_authenticated %}
|
|
<button class="unselected" onclick="location.href = '/login';">login</button>
|
|
{% else %}
|
|
<embed type="text/html" src="{{url_for('static', filename='log/dev.txt')}}" width="100%" height="85%" id="embed">
|
|
|
|
{% endif %}
|
|
{% endblock %} |