-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconnexion.html
More file actions
36 lines (25 loc) · 772 Bytes
/
connexion.html
File metadata and controls
36 lines (25 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!doctype html> <html lang=en>
<head>
<link rel=stylesheet type=text/css href={{ url_for("static", filename="main2.css") }}>
</head>
<body>
<form method="get" action="/return/">
<input id="image" type="image" width="50" height="50" alt="Gohome"
src=https://static.thenounproject.com/png/4038132-200.png></form>
<h1> Connexion </h1>
<form action="/" method="POST">
<h4>Identifiant</h4>
<input type="text" id="user_name" name="user_name">
<h4>Mot de passe</h4>
<input type="text" id="mdp" name="mdp">
<h3>
</h3>
<button type="submit">Connexion</button>
</form>
<h1>
</h1>
<h2>Vous n'avez pas de compte ?</h2>
<form method="get" action="/create/">
<button type="submit">Créer un nouveau compte</button>
</body>
</html>