-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (60 loc) · 2.2 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="msapplication-tap-highlight" content="no" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Antonin MILZA</title>
<meta name="description" content="Antonin MILZA" />
<meta name="keywords" content="antonin, milza," />
<meta name="author" content="Antonin MILZA" />
<!--Stylesheets-->
<link href="css/style_login.css" rel="stylesheet" type="text/css" />
<!--Scripts-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<!--Sliding icons-->
<script type="text/javascript">
$(document).ready(function() {
$(".username").focus(function() {
$(".user-icon").css("left","-48px");
});
$(".username").blur(function() {
$(".user-icon").css("left","0px");
});
$(".password").focus(function() {
$(".pass-icon").css("left","-48px");
});
$(".password").blur(function() {
$(".pass-icon").css("left","0px");
});
});
</script>
<script src="js/blurredlog.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".user-icon").css("left","-48px");
});
</script>
</head>
<body>
<div id="wrapper">
<div class="user-icon"></div>
<div class="pass-icon"></div>
<form class="login-form" >
<div class="header">
<h1>Bienvenue</h1>
<span>
Merci de saisir votre identifiant et mot de passe pour accéder au contenu.
</span>
</div>
<div class="content">
<input name="username" type="text" class="input username" placeholder="Identifiant" autofocus/>
<input name="password" type="password" class="input password" placeholder="Mot de passe" />
</div>
<div class="footer">
<input type="button" name="submit" value="Valider" class="button" onClick="pasuser(this.form)"/>
</div>
</form>
</div>
</body>
</html>