-
Notifications
You must be signed in to change notification settings - Fork 0
/
inscription.php
70 lines (65 loc) · 2.76 KB
/
inscription.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
67
68
69
70
<html>
<head>
<title>Plateforme ESSA</title>
<h1 class="v">VOUS ÊTES DANS LA PAGE D'INSCRIPTION DES ETUDIANTS DE E.S.S.A</h1>
<meta charset="UTF-8" />
<meta charset="UTF-8" />
<link rel="stylesheet" href="bootstrap.min.css">
</head>
<body>
<img class="a" src="ESSA.PNG" height="110" width="180" />
<img class="b" src="CAMES.PNG" height="110" width="180" />
<link rel="stylesheet" href="essa.css" />
<?php
try
{
?>
<link rel="stylesheet" href="bootstrap.min.css">
<div style="width:400px; margin:auto">
<form action="traiter.php" method="post">
<h3>RENSEIGNER LES COORDONNEES DE L'ETUDIANT</h3>
<div class="row">
</div>
<div class="col">
<label class="grey" for="username">Entrez votre Nom:</label>
<input class="form-control" type="text" name="Nom" id="username" value="" size="23" />
</div>
<div>
<div class="col">
<label class="grey" for="username">Entrez son Prénom:</label>
<input class="form-control" type="text" name="Prenom" id="username" value="" size="23" />
</div>
</div>
<div class="col">
<label class="grey" for="username">Entrez votre Login:</label>
<input class="form-control" type="text" name="Login" id="username" value="" size="23" />
</div>
<div class="col">
<label class="grey" for="username">Entrez votre Password:</label>
<input class="form-control" type="text" name="Password" id="username" value="" size="23" />
</div>
<div class="col">
<label class="grey" for="username">Entrez votre Niveau:</label>
<input class="form-control" type="text" name="Niveau" id="username" value="" size="23" />
</div>
<div class="col">
<label class="grey" for="username">Entrez votre Adresse:</label>
<input class="form-control" type="text" name="Adresse" id="username" value="" size="23" />
</div>
<div class="col">
<label class="grey" for="username">Entrez son Numéro de Tel :</label>
<input class="form-control" type="text" name="Tel" id="username" value="" size="23" />
</div>
<div>
<br>
<div>
<div class="col">
<button type="submit" class="btn btn-warning">ENREGISTRER</button>
</div>
</div>
</form>
<?php
}catch (Exception $e){
die('Erreur : ' . $e->getMessage());
}?>
</div>