-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
59 lines (44 loc) · 1.59 KB
/
index.php
File metadata and controls
59 lines (44 loc) · 1.59 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Index</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="indexStyle.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-4 col-sm-4 col-xs-4" ></div>
<div class="col-lg-4 col-sm-4 col-xs-4 " >
<h1>Bienvenue</h1>
</div>
</div>
<div class="row">
<div class="col-lg-4 col-sm-4 col-xs-4 col-md-4" ></div>
<form action="connection.php" method="post" id="form">
<div class="form-group">
<label for="email"> Login (email) :</label>
<input type="email" name="mail" class="form-control">
</div>
<div class="form-group">
<label for="pwd">Password :</label>
<input type="password" name="pwd" class="form-control">
</div>
<button type="submit" class="btn btn-primary" > Connexion</button>
<button type="button" class="btn btn-secondary" onclick="mdr()"> Creer Compte</button>
</form>
</div>
</div>
</body>
</html>
<script type="text/javascript">
function mdr(){
document.location.href="http://localhost/scan/ihmSaisie.php"
}
</script>