-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaddAccountBankHTML.php
45 lines (36 loc) · 1.13 KB
/
addAccountBankHTML.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
35
36
37
38
39
40
41
42
43
44
45
<html>
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Little Accountant</title>
<link rel="stylesheet" href="./assets/style/style.css">
<?php include('./vendor/addAccountBank.php') ?>
</head>
<body>
<header>
<div class="header-container">
<h2 id="easterEgg">Create Bank Account</h2>
</div>
</header>
<form method="POST">
<p>Acount's name : <input type="text" name="nom_compte" /></p>
<p>Account's type :
<select name="type_compte">
<option value="courant">Current</option>
<option value="epargne">Savings</option>
<option value="compte joint">joint account</option>
</select>
</p>
<p>Account's provision : <input type="number" name="provision_compte" /></p>
<p>Account's currency :
<select name="devise_compte">
<option value="EUR">€ EUR</option>
<option value="USD">$ USD</option>
</select>
</p>
<p><input type="submit" name="submitForm" value="OK"></p>
</form>
<script src="./assets/js/addAccountBank.js"></script>
</body>
</html>