-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (32 loc) · 1012 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Schoolin - Login</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="https://kit.fontawesome.com/a81368914c.js"></script>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0'>
</head>
<body>
<div class="container">
<div class="img">
<img class="illustration" src="img/illustration.svg">
</div>
<div class="login-content">
<form action="index.html">
<img class="logo" src="img/logo.png">
<div class="input-field">
<i class="fas fa-user" aria-hidden="true"></i>
<input type="email" placeholder="E-mail">
</div>
<div class="input-field">
<i class="fas fa-lock"></i>
<input type="password" placeholder="Mot de passe" />
</div>
<a href="#" class="lost-password">Mot de passe oublié ?</a>
<input type="submit" class="btn" value="Sign in">
</form>
</div>
</div>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>