-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
34 lines (28 loc) · 1 KB
/
index.php
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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Formulaire</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form action="PHP.php" method="GET">
<p>Votre nom de compte : <input type="text" name="nom" /></p>
<p>Votre type de compte :
<select name="type" >
<option value="courant">Courant</option>
<option value="epargne">Épargne</option>
<option value="compte joint">Compte Joint</option>
</select>
</p>
<p>Votre provision : <input type="number" name="provision" /></p>
<p>Votre devise :
<select name="devise" >
<option value="EUR">€ EUR</option>
<option value="USD">$ USD</option>
</select>
</p>
<p><input type="submit" name="submitForm" value="OK"></p>
</form>
</body>
</html>