mirror of
https://github.com/Steffo99/estus.git
synced 2024-11-21 23:24:18 +00:00
Add the most important feature of all times and all dimensions: SMEDCS
This commit is contained in:
parent
80822469e4
commit
60437cbe19
4 changed files with 30 additions and 0 deletions
|
@ -610,6 +610,15 @@ def page_user_add():
|
|||
return redirect(url_for('page_user_list'))
|
||||
|
||||
|
||||
@app.route('/smedcs', methods=['GET'])
|
||||
def page_smedcs():
|
||||
"""Pagina che visualizza i credits del sito"""
|
||||
if 'username' not in session:
|
||||
return redirect(url_for('page_login'))
|
||||
if request.method == 'GET':
|
||||
return render_template("smedcs.htm", type="main", user=session["username"])
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
# Se non esiste il database, crealo e inizializzalo!
|
||||
if not os.path.isfile("data.db"):
|
||||
|
|
|
@ -10,6 +10,12 @@
|
|||
{% include 'nav.htm' %}
|
||||
<div class="container">
|
||||
{% block content %}{% endblock %}
|
||||
<br><br>
|
||||
<a href="/smedcs"> <div align="right">
|
||||
<div class="well well-sm">
|
||||
<img alt="joke" src="{{ url_for('static', filename='joke.png') }}">
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -9,7 +9,9 @@
|
|||
<input class="form-control" type="password" placeholder="Password" name="password">
|
||||
<input class="btn btn-primary" type="submit">
|
||||
</form>
|
||||
<br>
|
||||
<img class="goldfish" src="{{goldfish}}">
|
||||
<img class="goldfish" src="{{goldfish}}">
|
||||
<img class="goldfish" src="{{goldfish}}">
|
||||
<br>
|
||||
{% endblock %}
|
13
templates/smedcs.htm
Normal file
13
templates/smedcs.htm
Normal file
|
@ -0,0 +1,13 @@
|
|||
{% extends "base.htm" %}
|
||||
{% block title %}Credits{% endblock %}
|
||||
{% block content %}
|
||||
<h1>
|
||||
Secondo me è colpa dello stagista...
|
||||
</h1>
|
||||
<div class="panel panel-info">
|
||||
<div class="panel panel-heading">Informazioni sul sito</div>
|
||||
Questo sito è stato scritto da Stefano Pigozzi e da Balugani Lorenzo durante lo stage di 4° e di 5° nel 2017<br>
|
||||
Questo sito utilizza python, flask, sqlalchemy e jinja2.
|
||||
</div>
|
||||
<center><img alt="Banner" src="{{ url_for('static', filename='UTdClogo.png') }}"></center>
|
||||
{% endblock %}
|
Loading…
Reference in a new issue