-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
76 lines (72 loc) · 2.58 KB
/
popup.html
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>Invoice Form - Aenzbi</title>
<style>
body {
font-family: Arial, sans-serif;
width: 300px;
}
fieldset {
margin-bottom: 15px;
}
input {
width: 100%;
margin-bottom: 10px;
}
table {
width: 100%;
}
th, td {
text-align: left;
padding: 5px;
}
</style>
</head>
<body>
<h1>Invoice Form - Aenzbi</h1>
<form id="invoiceForm">
<fieldset>
<legend>A. Identification du vendeur</legend>
Nom et prénom ou Raison sociale: <input type="text" id="sellerName" required><br>
NIF: <input type="text" id="sellerNIF" required><br>
Registre de Commerce N°: <input type="text" id="sellerRegistre" required><br>
B.P: <input type="text" id="sellerBP"><br>
Téléphone: <input type="text" id="sellerPhone"><br>
Commune: <input type="text" id="sellerCommune"><br>
Quartier: <input type="text" id="sellerQuartier"><br>
Av.: <input type="text" id="sellerAvenue"><br>
Rue: <input type="text" id="sellerRue"><br>
N°: <input type="text" id="sellerNumber"><br>
Assujetti à la TVA: <input type="checkbox" id="sellerTVA"><br>
</fieldset>
<fieldset>
<legend>B. Le client</legend>
Nom et prénom ou Raison sociale: <input type="text" id="clientName" required><br>
NIF: <input type="text" id="clientNIF" required><br>
Résident à: <input type="text" id="clientResident"><br>
Assujetti à la TVA: <input type="checkbox" id="clientTVA"><br>
</fieldset>
<fieldset>
<legend>Invoice Details</legend>
<table id="invoiceTable">
<tr>
<th>Nature de l’article ou service</th>
<th>Qté</th>
<th>PU</th>
<th>PVHTVA</th>
</tr>
<tr>
<td><input type="text" name="article" required></td>
<td><input type="number" name="quantity" required></td>
<td><input type="number" name="price" required></td>
<td><input type="number" name="total" required></td>
</tr>
</table>
</fieldset>
<button type="button" onclick="submitForm()">Submit</button>
</form>
<footer>© Aenzbi</footer>
<script src="popup.js"></script>
</body>
</html>