iotronic-lightning-rod/iotronic_lightningrod/modules/web/templates/home.html

48 lines
843 B
HTML

{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}Welcome in Lightning-rod{% endblock %}</h1>
{% endblock %}
{% block content %}
{% if session['status'] == 'restarting' %}
<head>
<meta http-equiv="refresh" content="10;url=/status" />
</head>
<br>
<div align="center">
Waiting for restarting in 10 seconds...
</div>
{% elif session['status'] == 'starting' %}
<head>
<meta http-equiv="refresh" content="10;url=/status" />
</head>
<br>
<div align="center">
Waiting for starting in 10 seconds...
</div>
{% else %}
<div align="center">
<br>
<img src="{{ url_for('static', filename='images/stack4thingslogo.png') }}" alt="stack4thingslogo" width="260" height="260">
</div>
{% endif %}
{% endblock %}