-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathforgotpassword.php
More file actions
22 lines (22 loc) · 920 Bytes
/
forgotpassword.php
File metadata and controls
22 lines (22 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php include('includes/header.php');?>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="panel panel-default">
<form method="post" id="forgotpasswordform">
<h5 class="text-danger">
Mot de passe oublié ? Entrer votre email adresse:
</h5>
<div class="form-group">
<label for="forgotemail">Email:</label>
<input class="form-control" type="email" name="forgotemail" id="forgotemail" placeholder="Email" maxlength="50">
</div>
<button type="button" class="btn btn-success">
Valider
</button>
</form>
</div>
</div>
</div>
</div>
<?php include('includes/footer.php');?>