-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.php
More file actions
55 lines (45 loc) · 2.19 KB
/
index.php
File metadata and controls
55 lines (45 loc) · 2.19 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
<?php
require_once 'environnements/dev.php';
include('head.php');
?>
<body>
<div class="small_size">
</div>
<div class="container">
<div class="row">
<center> <img src="./images/vote.png" alt="Logo" width="80px" style="margin-top:10px;" /></center>
<center>
<h3 style="margin-bottom:-40px;"> <?php echo APP_NAME_USER ?> </h3>
</center>
<div class="col-md-4 col-md-offset-4">
<div class="login-panel panel panel-default" style="border: 1px solid rgb(33,198,104);">
<div class="panel-heading" style="background: linear-gradient(90deg, rgba(33, 198, 104, 1) 0%, rgba(16, 135, 100, 1) 100%); color:white;">
<center>
<h3 class="panel-title"> Identification </h3>
</center>
</div>
<div class="panel-body">
<form role="form" method="post" enctype="multipart/form-data">
<fieldset>
<div class="form-group">
<label for="username">Matricule</label>
<input class="form-control" placeholder="Please Enter Voter's ID Number" name="idno" type="text" required="required" autofocus>
</div>
<div class="form-group">
<label for="username">Mot de Passe</label>
<input class="form-control" placeholder="Password" name="password" type="password" required="required">
</div>
<button class="loginButton" name="login">
Login
</button>
</fieldset>
<?php include('login_query.php'); ?>
</form>
</div>
</div>
</div>
</div>
</div>
<?php include('scripts/script.php'); ?>
</body>
</html>