-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvaliderPanier.php
67 lines (54 loc) · 1.71 KB
/
validerPanier.php
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
<?php require ("HeaderLayout.php"); ?>
<form class="form-horizontal" action="validerSession.php" method="POST">
<fieldset>
<!-- Form Name -->
<div class="alert alert-info" role="alert">
<legend>Valider votre Session </legend>
</div>
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="emailid">Username</label>
<div class="col-md-4">
<input id="emailid" name="username" placeholder="" class="form-control input-md" required="" type="text">
</div>
</div>
<!-- Password input-->
<div class="form-group">
<label class="col-md-4 control-label" for="password">Password</label>
<div class="col-md-4">
<input id="password" name="mdp" placeholder="" class="form-control input-md" required="" type="password">
<span class="help-block"> </span>
</div>
</div>
<!-- Button -->
<div class="form-group">
<label class="col-md-4 control-label" for="login"></label>
<div class="col-md-4">
<button id="login" name="login" class="btn btn-primary">Login</button>
</div>
</div>
</fieldset>
</form>
<script type="text/javascript">
$(document).ready(function () {
$('#horizontalTab').easyResponsiveTabs({
type: 'default', //Types: default, vertical, accordion
width: 'auto', //auto or any width like 600px
fit: true // 100% fit in a container
});
});
</script>
<div class="section group">
</div>
</div>
</div>
</div>
<?php require("footerLayout.php"); ?>
<script type="text/javascript">
$(document).ready(function() {
$().UItoTop({ easingType: 'easeOutQuart' });
});
</script>
<a href="#" id="toTop"><span id="toTopHover"> </span></a>
</body>
</html>