forked from lydarras/augustine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.php
More file actions
30 lines (25 loc) · 914 Bytes
/
options.php
File metadata and controls
30 lines (25 loc) · 914 Bytes
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
<?php include_once('inc/bdd_conf.php');
include_once('inc/fonctions.php');?>
<?php include_once('inc/header.php'); ?>
<body>
<?php include_once('inc/menu.php'); ?>
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1>Options</h1>
</div>
</div>
<br>
<div class="row">
<ol class="breadcrumb">Modifier son mot de passe</ol>
<div class="center" style='background:#FF6600'>
<form method="post" action="doChangePW.php">
<label>Mot de passe actuel : <input type="password" name="actuel" ></label>
<label>Nouveau mot de passe : <input type="password" name="nouveau" ></label>
<label>Verification mot de passe : <input type="password" name="verife" ></label>
<input type="submit" name="submit" value=" Envoyer ">
</form>
</div>
</div>
</div>
<?php include_once('inc/footer.php'); ?>