Blame view

site/formConnexion.php 896 Bytes
f3564fdb   grouille   Ajout des fichier...
1
2
3
  <div class="row">

  	<div class="col-4 col-md-4 offset-md-4 offset-4">

  		<br/>

39579493   root   MAJ Site
4
  		<h1 style="margin-bottom:20px; margin-top:60px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fa fa-user-shield"></i> Connexion</h1>

f3564fdb   grouille   Ajout des fichier...
5
6
7
8
9
10
11
12
13
14
  		<form action="connecter.php" method="post">

  			<table class="table table-striped table-bordered">

  				<tbody>

  					<tr>

  						<td>Identifiant : </td>

  						<td><input type="text" name="id" placeholder="Entrez votre identifiant" maxlength="30" required="true" class="case" /></td>

  					</tr>

  					<tr><td>Mot de passe :</td>

  						<td><input type="password" name="pwd" placeholder="Entrez votre mot de passe" required="true" class="case" /></td>

  					</tr>

f3564fdb   grouille   Ajout des fichier...
15
16
  				</tbody>

  			</table>

41313a7a   Guillaume   MAJ site
17
  			<input type="submit" class="btn btn-dark btn-lg btn-block" style="margin-top:20px; margin-bottom:20px;" value="Se connecter"/>

3bff9633   Guillaume   MAJ site
18
  			<br/>

f3564fdb   grouille   Ajout des fichier...
19
20
  		</form>

  	</div>

39579493   root   MAJ Site
21
  </div>