mirror of
https://github.com/Steffo99/estus.git
synced 2024-11-21 23:24:18 +00:00
Finish adding titles (#4)
This commit is contained in:
parent
dbdf1ab409
commit
2646750069
4 changed files with 6 additions and 4 deletions
|
@ -4,6 +4,7 @@
|
||||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
|
||||||
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||||||
|
<link rel="icon" href="http://www.terredicastelli.mo.it/favicon.ico">
|
||||||
{% block extrahead %}{% endblock %}
|
{% block extrahead %}{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.htm" %}
|
{% extends "base.htm" %}
|
||||||
{% block title %}Dashboard - Estus{% endblock %}
|
{% block title %}Pagina principale • estus{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-6">
|
<div class="col-sm-6">
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
{% extends 'base.htm' %}
|
{% extends 'base.htm' %}
|
||||||
|
{% block title %}Errore • estus{% endblock %}
|
||||||
{% block extrahead %}
|
{% block extrahead %}
|
||||||
<script>
|
<script>
|
||||||
window.onload = function() {
|
window.onload = function() {
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
window.history.back();
|
window.history.back();
|
||||||
}, 7000)
|
}, 4000)
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -13,6 +14,6 @@
|
||||||
<b>ERRORE:</b> {{ error }}
|
<b>ERRORE:</b> {{ error }}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
Sarai reindirizzato alla pagina precedente entro 7 secondi.
|
Sarai reindirizzato alla pagina precedente entro 4 secondi (se hai abilitato il javascript).
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "base.htm" %}
|
{% extends "base.htm" %}
|
||||||
{% block title %}Benvenuto all'Acquario{% endblock %}
|
{% block title %}Login • estus{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>
|
<h1>
|
||||||
Login
|
Login
|
||||||
|
|
Loading…
Reference in a new issue