-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew_Account_Form.php
More file actions
56 lines (52 loc) · 2.17 KB
/
new_Account_Form.php
File metadata and controls
56 lines (52 loc) · 2.17 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="fr">
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="UTF-8">
<title>Main</title>
</head>
<body>
<div class="creation container">
<h1>Créer un compte</h1>
<form method="post" action="create_Account.php">
<div class="form-group">
<label for="nom">Nom :</label>
<input type="text" name="nom" id="nom" placeholder="Nom" />
</div>
<div class="form-group">
<label for="solde">Solde :</label>
<input type="number" name="solde" id="solde" placeholder="Solde"/>
</div>
<div class="form-group">
<label for="type">Type :</label>
<SELECT name="type" id="type" size="1">
<OPTION>Courant</OPTION>
<OPTION>Epargne</OPTION>
<OPTION>Joint</OPTION>
<OPTION>Prêt</OPTION>
<OPTION>Épargne Logement</OPTION>
</SELECT>
</div>
<div class="form-group">
<label for="devise">Devise :</label>
<SELECT name="devise" id="devise" size="1">
<OPTION>EUR(€)</OPTION>
<OPTION>USD($)</OPTION>
<OPTION>GBP(£)</OPTION>
</SELECT>
</div>
<div class="form-group">
<p>
Définissez un budget à ne pas dépasser, une barre de progression apparaitra pour vous informer de la progression :)
</p>
<div class="form-group">
<label for="budget">Budget :</label>
<input type="number" name="budget" id="budget" placeholder="budget"/>
</div>
<input type="submit" name="valider" value="Valider" />
</div>
</form>
</div>
<a class="btnPage" href="index.php">Retour</a>
</body>
</html>