Blame view

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