-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign_up.php
53 lines (50 loc) · 3.05 KB
/
sign_up.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>Register - 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">
</head>
<body class="bg-gradient-primary">
<div class="container">
<div class="card shadow-lg o-hidden border-0 my-5">
<div class="card-body p-0">
<div class="row">
<div class="col-lg-5 d-none d-lg-flex">
<div class="flex-grow-1 bg-register-image" style="background-image: url("assets/img/dogs/image2.jpeg");"></div>
</div>
<div class="col-lg-7">
<div class="p-5">
<div class="text-center">
<h4 class="text-dark mb-4">Creer un compte!</h4>
</div>
<form class="user">
<div class="row mb-3">
<div class="col-sm-6 mb-3 mb-sm-0"><input class="form-control form-control-user" type="text" id="mat" placeholder="Matricule"></div>
<div class="col-sm-6"><input class="form-control form-control-user" type="text" id="cin" placeholder="CIN"></div>
</div>
<div class="row mb-3">
<div class="col-sm-6 mb-3 mb-sm-0"><input class="form-control form-control-user" type="text" id="nom" placeholder="Nom"></div>
<div class="col-sm-6"><input class="form-control form-control-user" type="text" id="prenom" placeholder="Prénom"></div>
</div>
<div class="row mb-3">
<div class="col-sm-6 mb-3 mb-sm-0"><input class="form-control form-control-user" type="password" id="pass" placeholder="Mot de passe" ></div>
<div class="col-sm-6"><input class="form-control form-control-user" type="password" id="confirm_pass" placeholder="Confirmation de mot de passe"></div>
</div><button class="btn btn-primary d-block btn-user w-100" id="btn_sign" type="button">S'inscrire</button>
<hr>
</form>
<div class="text-center"><a class="small" href="index.php">Vous avez déja un compte? Connecter!</a></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/js/theme.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>