forked from aminetamouh/idb_facebook_clone_smi_s6-_g1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
authentification.html
29 lines (29 loc) · 1.16 KB
/
authentification.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
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Page d'insctiption</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="css/inscription.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-lg-4 offset-lg-2 title">
<div class="col-lg-6 logo"></div>
<div class="col-lg-12 description">
Avec Facebook, partagez et restez en contact avec votre entourage.
</div>
</div>
<div class="col-lg-3 offset-lg-1 form">
<input type="text" placeholder="Adresse e-mail ou numero de tele" class="form-control form-control-lg">
<input type="password" placeholder="Mot de passe" class="form-control form-control-lg">
<button class="btn btn-primary btn-block btn-lg">Se connecter</button>
<a href="#">Mot de passe oublié</a>
<hr>
<button class="btn btn-success btn-lg">Créer nouveau compte</button>
</div>
</div>
</div>
</body>
<script src="js/inscription.js"></script>
</html>