Blame view

site/formSuppression.php 813 Bytes
e8885fa6   grouille   Test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  <?php
  if(getGroupe($_SESSION['Login'])!=1)
  { header("Location: accueil.php"); }
  $groupes = getGroupes();
  ?>
  <div class="row">
  	<div class="col-4 col-md-4 offset-md-4 offset-4">
  	<br/>
  		<h1 style="margin-bottom:20px; margin-top:60px; border-bottom:1px solid #CCC; padding-bottom:20px;"><i class="fas fa-user-slash"></i> Supprimer un compte</h1>
  		<form action="suppression.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" /></td>
  					</tr>
  				</tbody>
  			</table>
  			<input type="submit" class="btn btn-dark btn-lg btn-block" style="margin-top:20px; margin-bottom:20px;" value="Supprimer"/>
  			<br/>
  		</form>
  	</div>
  </div>