-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
52 lines (49 loc) · 3.05 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Login - Brand</title>
<link rel="stylesheet" href="./assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i&display=swap">
<link rel="stylesheet" href="./assets/fonts/fontawesome-all.min.css">
</head>
<body style="background: rgb(15,69,219);background: linear-gradient(90deg, rgba(15,69,219,1) 0%, rgba(185,192,212,1) 52%, rgba(15,69,219,1) 100%);">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-9 col-lg-12 col-xl-10">
<div class="card shadow-lg o-hidden border-0 my-5">
<div class="card-body p-0">
<div class="row">
<div class="col-lg-6 d-none d-lg-flex">
<div class="flex-grow-1 bg-login-image" ><img src="assets/img/ofppt_logo.png" alt="lojo"></div>
</div>
<div class="col-lg-6">
<div class="p-5">
<div class="text-center">
<h4 class="text-dark mb-4">Welcome Back!</h4>
</div>
<form class="user">
<div class="mb-3"><input class="form-control form-control-user" type="text" id="mat" aria-describedby="emailHelp" placeholder="Enter votre Matricule..."></div>
<div class="mb-3"><input class="form-control form-control-user" type="password" id="pass" placeholder="Password"></div>
<div class="mb-3">
<div class="custom-control custom-checkbox small">
<div class="form-check"><input class="form-check-input custom-control-input" type="checkbox" id="formCheck-1"><label class="form-check-label custom-control-label" for="formCheck-1">Remember Me</label></div>
</div>
</div><button class="btn btn-primary d-block btn-user w-100" id="btn_login" type="button">Connecter</button>
<hr>
</form>
<div class="text-center"><a class="small" href="sign_up.php">Vous n'avez pas un compte ? S'nscrire!</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="./assets/js/jquery-3.4.1.min.js"></script>
<script src="./assets/bootstrap/js/bootstrap.min.js"></script>
<script src="./assets/bootstrap/js/main.js"></script>
</body>
</html>