-
Notifications
You must be signed in to change notification settings - Fork 0
/
utilisateur.php
29 lines (28 loc) · 1.16 KB
/
utilisateur.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
<link rel="stylesheet" href="bootstrap.min.css">
<div style="width:400px; margin:auto">
<form action="traiter.php" method="post">
<h3>Identifiez vous avant d'enter dans la Base</h3>
<div class="row">
<label class="grey" for="username">Entrez Votre Nom:</label>
</div>
<div>
<input class="form-control" type="text" name="Nom" id="username" value="" size="23" />
</div>
<div>
<label class="grey" for="username">Entrez Votre Prenom:</label>
<input class="form-control" type="text" name="Prenom" id="username" value="" size="23" />
</div>
<div>
<label class="grey" for="username">Entrez Votre Login :</label>
<input class="form-control" type="text" name="Login" id="username" value="" size="23" />
</div>
<div>
<label class="grey" for="username">Entrez votre Mot de passe:</label>
<input class="form-control" type="Password" name="Password" id="username" value="" size="23" />
</div>
<div>
<br>
<button type="submit" class="btn btn-warning">Enregister</button>
</div>
</div>
</form>