-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeposit.php
More file actions
31 lines (30 loc) · 1.07 KB
/
deposit.php
File metadata and controls
31 lines (30 loc) · 1.07 KB
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
31
<?php
include "template/nav.php";
include "template/header.php";
?>
<div class="container">
<div class="row">
<form action="#" method="post" class="col-11">
<div class="form-group">
<label for="compte">Votre compte</label>
<select class="form-control" id="compte" name="compte">
<option value="">--Choisissez votre de compte--</option>
<option value="courant">Compte courant</option>
<option value="livretA">LivretA</option>
<option value="PEL">PEL</option>
<option value="livretJeune">Livret Jeune</option>
<option value="Perp">PERP (retraite)</option>
<option value="Perp">LEP (populaire)</option>
</select>
</div>
<div class="form-group">
<label for="deposit">Depôt d'argent (Minimum 20 euro)</label>
<input type="number" class="form-control" id="deposit" name="deposit" value="20" min="20" required>
</div>
<button type="submit" class="btn btn-primary mb-2">Déposer</button>
</form>
</div>
</div>
<?php
include "template/footer.php";
?>