-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (63 loc) · 3.68 KB
/
index.html
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<!-- jquery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg==" crossorigin="anonymous"></script>
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Xanh+Mono&display=swap" rel="stylesheet">
<!-- botstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<!-- perso -->
<script defer src="js/services/storage.js"></script>
<script defer src="js/services/global.js"></script>
<script defer src="js/services/RequestHandler.js"></script>
<script defer src="js/index.js"></script>
<title>Projet 2020 | Thomas Abreu Dias</title>
</head>
<body class="container">
<header class=" row text-center">
<h1>KWICK</h1>
<span id="ctrn-alert"></span>
</header>
<main class="row text-center">
<div class="col">
<form id="form-login" class="form-signin" method="get">
<fieldset class="card mb-4 shadow-sm">
<legend class=" card-header my-0 fw-normal">Connexion</legend>
<div class="card-body">
<label for="username-login">Nom de d'utilisateur</label>
<input class="form-control" type="text" name="username-login" id="username-login" required>
<label for="password-login">Mot de passe</label>
<input class="form-control" type="password" name="password-login" id="password-login" required>
<br>
<button type="submit" class="w-100 btn btn-lg btn-outline-primary offset">Se connecter</button>
</div>
</fieldset>
</form>
</div>
<div class="col">
<form id="form-signup" method="get">
<fieldset class="card mb-4 shadow-sm">
<legend class="card-header my-0 fw-normal">Inscription</legend>
<div class="card-body">
<label for="username-signup">Nom de d'utilisateur</label>
<input class="form-control" type="text" name="username-signup" id="username-signup" required >
<label for="password-signup">Mot de passe</label>
<input class="form-control" type="password" name="password-signup" id="password-signup" required >
<label for="confirm">Confirmation</label>
<input class="form-control" type="password" name="confirm" id="confirm" required >
<br>
<button class="w-100 btn btn-lg btn-outline-primary" type="submit">S'inscrire</button>
</div>
</fieldset>
</form>
</div>
</main>
</body>
</html>