Compare commits

..

No commits in common. "9a998e1d6181dd48a8c1deac940cb3e13c6c1f41" and "cf0150287000d81f339c36bbaca9dcd4e535e516" have entirely different histories.

4 changed files with 25 additions and 22 deletions

7
app.py
View File

@ -5,15 +5,8 @@ import pages
app = Flask(__name__)
@app.route('/')
@app.route('/home')
@app.route('/home/')
def main():
return pages.main()
@app.errorhandler(404)
def error(e):
return pages.error()
if __name__=="__main__":
app.run(debug=True)

View File

@ -4,7 +4,4 @@ import definitions as lib
# Fonctions qui seront associées à des URLs
def main():
return render_template("index.html")
def error():
return render_template("error.html")
return render_template("main.html")

View File

@ -1,11 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<link href="/static/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>Erreur !</h1>
<p>Retour à <a href="/home">la page d'accueil</a></p>
</body>
</html>

24
templates/main.html Normal file
View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title> Sauveteurs du dunkerquois</title>
<link href="static/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<center>
<div class="LOGO-DUO">
<img src="https://sauveteurdudunkerquois.fr/wp-content/uploads/2021/09/LOGO-DUO.png" width="200"
height="100">
</div>
<br>
<form method="get" >
<input type="text"
placeholder="Rechercher un sauveteur, un bateau, une personne sauvée...">
<input type="submit" value="Rechercher">
</form>
<br>
<div>
<button>Page au hasard</button>
</div>
</center>
</body>