-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser-metadata.html
604 lines (447 loc) · 31 KB
/
user-metadata.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
<!-- saved from url=(0084)https://prdmitrustcdnstorage.blob.core.windows.net/cdn/dp/commons/user-metadata.html -->
<html><head>
<!-- <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js?render=explicit"></script>
<script>
// Si vous utilisez un chargement synchrone, cela sera appelé une fois que le DOM est prêt
turnstile.ready(function () {
// Obtenez l'élément HTML avec l'ID "example-container"
var exampleContainer = document.getElementById('example-container');
// Vérifiez si l'élément existe avant d'appeler turnstile.render
if (exampleContainer) {
// Utilisez directement l'objet HTMLElement comme conteneur
turnstile.render(exampleContainer, {
sitekey: '0x4AAAAAAARGfmnUO4VfkDnw',
callback: function(token) {
console.log(`Challenge Success ${token}`);
},
});
} else {
console.error('Le conteneur avec l\'ID "example-container" n\'a pas été trouvé.');
}
});
</script>
-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.min.js"></script>
<script>
function printPage() {
window.print(); // Lance l'impression de la page
}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
<script>
function downloadPage() {
var pageContent = document.documentElement.outerHTML; // Récupère tout le HTML de la page
var blob = new Blob([pageContent], { type: 'text/html' }); // Crée un fichier Blob avec le contenu HTML
var link = document.createElement('a'); // Crée un lien
link.href = URL.createObjectURL(blob); // Crée une URL pour télécharger le Blob
link.download = 'page.html'; // Nom du fichier téléchargé
link.click(); // Simule un clic pour démarrer le téléchargement
}
</script>
<script>
function downloadAsImage() {
html2canvas(document.body).then(function(canvas) {
var imageUrl = canvas.toDataURL("image/png"); // Crée l'URL de l'image
var link = document.createElement('a');
link.href = imageUrl; // Lien vers l'image générée
link.download = 'page.png'; // Nom du fichier
link.click(); // Lance le téléchargement
});
}
</script>
<script>
function downloadAsPDF() {
const { jsPDF } = window.jspdf;
const doc = new jsPDF();
doc.html(document.body, {
callback: function (doc) {
doc.save('page.pdf'); // Télécharge le PDF avec le nom "page.pdf"
},
x: 10,
y: 10
});
}
</script>
<script>
function downloadAsPDF2() {
const element = document.body; // Capture l'ensemble du corps de la page
html2pdf()
.from(element) // Convertit l'élément en PDF
.save('page.pdf'); // Télécharge le fichier PDF
}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.9.2/html2pdf.bundle.js"></script>
</head>
<body>
<!-- Utilisez le conteneur div avec l'id "example-container" pour le captcha -->
<!-- <div class="cf-turnstile" data-sitekey="0x4AAAAAAARGfmnUO4VfkDnw"></div> -->
<!-- Utilisez le formulaire avec un ID différent de "example-container" -->
<form id="example-container" id="login-form" action="/login" method="POST">
<input type="text" placeholder="username" />
<input type="password" placeholder="password" autocomplete="current-password" />
<!-- Vous pouvez supprimer le conteneur div ici, car le captcha est déjà affiché ci-dessus -->
<button type="submit" value="Submit">Log in</button>
</form>
<p>Ceci est un exemple de page. Cliquez sur le bouton ci-dessous pour imprimer la page.</p>
<button onclick="printPage()">Imprimer cette page</button>
<p>Cliquez sur le bouton ci-dessous pour télécharger le code HTML de cette page.</p>
<button onclick="downloadPage()">Télécharger la page HTML</button>
<p>Cliquez sur le bouton ci-dessous pour télécharger la page sous forme d'image PNG.</p>
<button onclick="downloadAsImage()">Télécharger la page en image</button>
<p>Cliquez sur le bouton ci-dessous pour télécharger la page en PDF.</p>
<button onclick="downloadAsPDF()">Télécharger la page en PDF</button>
<p>Cliquez sur le bouton ci-dessous pour télécharger la page en PDF.</p>
<button onclick="downloadAsPDF2()">Télécharger la page en PDF</button>
<a href="/retriever-public/avisimpotstest.pdf" download id="avisimpotstest">avisimpotstest</a>
<div id="login_label">Login : </div><input id="login" name="login" type="text">
<div id="pass_label">Password : </div><input id="pass" name="pass" type="text">
<label for="firstnames">Choose a name:</label>
<p id="banquepop">Jon Et Daenerys
31019570014 BP VAL DE FRANCE M ET MME TARGARYEN</p>
<select name="firstnames" id="firstnames">
<option value="amalia">Amalia</option>
<option value="Amine">Amine</option>
<option value="Elsa">Elsa</option>
<option value="Ronny">Ronny</option>
</select>
<a href="https://www.solven.eu/retriever-public/739825339-URSSAF-Attestation-de-Vigilance.pdf" download id="attestationVigilance">Attestation de vigilance</a>
<!-- Profil NL -->
<div id="nlname">I. Jérémy</div>
<div id="nladdress">VEEN WETERING 2, 1509KE, ZAANDAM</div>
<div id="nliban">NL 91 ABNA 0417164300</div>
<div id="nlbirthdate">28-01-1992</div>
<a href="/retriever-public/nl-identity-card.jpg" download="nlidcard" id="nl-id-card">NL id card</a>
<a href="/retriever-public/nl-id-back.jpg" download="nlidcardback" id="nl-id-cardback">NL id cardback</a>
<!-- FIN Profil NL -->
<div class="gender">Monsieur</div>
<div id="name">MR LACELLE BENOIT</div>
<div id="given_name">BENOIT</div>
<div id="family_name">LACELLE</div>
<div id="postal_address">MR LACELLE BENOIT<br>5 Via Marghera<br>, Rome 00185</div>
<div id="postal_address_digits">4 VLA DE SEGUR<br>, 75007 PARIS 07</div>
<div id="address">3 rue Bellini<br>92800 Puteaux FRANCE</div>
<div id="addressde">ROBSTR . 39<br>50823 KÖLN EHRENFELD</div>
<div id="address_digits">4 VLA DE SEGUR<br>75007 PARIS 07</div>
<a href="https://www.crid.asso.fr/IMG/pdf/iban_droits_ici_et_la_bas_00020064202.pdf" id="rib">RIB</a>
<div id="iban">FR86 2004 1010 1248 5762 1N03 339</div>
<div id="bic">AGRIFRPP836</div>
<a href="https://prdmitrustcdnstorage.blob.core.windows.net/cdn/dp/commons/2019-03_ProofOfResidence_EDF.pdf" id="proof_of_residence">JUSTIFICATIF DE DOMICILE</a>
<div id="phone_number">06 15 14 63 15</div>
<div id="birthdate">29/01/1978</div>
<div id="birthplace">BEAUMONT (63)</div>
<div id="income_tax_reference">35000</div>
<div id="taxable_income">37000</div>
<a href="https://www.artee.fr/wp-content/uploads/2017/12/Exemple_avis_imposition.pdf" id="income_notice">AVIS D'IMPOSITION</a>
<br><br>DE<br><br>
<div class="gender_de">Herr</div>
<div id="name_de">Hr. LAZELLE BENEDIKT</div>
<div id="given_name_de">BENEDIKT</div>
<div id="family_name_de">LAZELLE</div>
<div id="address_de">Seeweg 1<br>15299 Müllrose</div>
<div id="postal_address_de">Hr. LAZELLE BENEDIKT<br>Seeweg 1<br>15299 Müllrose</div>
<a href="https://www.solven.eu/retriever-public/erika_front_sample.jpg" download id="proof_of_identity_front">FRONT SAMPLE</a><br>
<a href="https://www.solven.eu/retriever-public/erika_back_sample.jpg" download id="proof_of_identity_back">BACK SAMPLE</a></br>
<a href="https://www.solven.eu/retriever-public/erika_front_sample-min2.jpg" download id="proof_of_identity_front2">FRONT SAMPLE</a><br>
<a href="https://www.solven.eu/retriever-public/erika_back_sample-min2.jpg" download id="proof_of_identity_back2">BACK SAMPLE</a></br>
<a href="https://www.solven.eu/retriever-public/screenshot-1.png" download id="screenshot">SCREENSHOT TEST</a>
<a href="https://www.solven.eu/retriever-public/screenshot-2.png" download id="screenshot2">SCREENSHOT TEST 2</a>
<div id="date">21/01/2021</div>
<a href="https://www.solven.eu/retriever-public/facture-bouygue.pdf" download id="dl_facture">Facture bouygue</a>
<a href="https://www.solven.eu/retriever-public/download.pdf" download id="d2_facture">Facture KPN</a>
<div id="name_j">MR ANDRADE JEREMY</div>
<div id="kbistest">
<div>
<div class="business_name">Siren commence par 0</div>
<div class="siren">088882151</div>
<div class="country">FR</div>
<div class="status">Immatriculation : inscrit</div>
<a href="/retriever-public/Avis_d_impot_2021_sur_les_revenus_2020 SPECIMEN.pdf" download id="dl_impots">avis impots</a> </br>
<a href="/retriever-public/Kemo_EXTRAIT_RCS.pdf" download id="dl_kbis">KBIS</a>
</div>
<div>
<div class="business_name">Conde Kemo</div>
<div class="siren">888882151</div>
<div class="country">FR</div>
<div class="status">Immatriculation : inscrit</div>
<a href="/retriever-public/Avis_d_impot_2021_sur_les_revenus_2020 SPECIMEN.pdf" download id="dl_impots">avis impots</a> </br>
<a href="/retriever-public/Kemo_EXTRAIT_RCS.pdf" download id="dl_kbis">KBIS</a>
</div>
</br>
<div>
<div class="business_name">RAMAZANI Lubwil</div>
<div class="country">FR</div>
<div class="status">Immatriculation : inscrit</div>
<a href="/retriever-public/Razani_EXTRAIT_RCS.pdf" download id="dl_kbis">KBIS</a>
</div>
</br>
<div>
<div class="business_name">CISSOKHO Mady</div>
<div class="siren">888882153</div>
<div class="country">FR</div>
<div class="status">Immatriculation : inscrit</div>
<! -- remplacer ***_EXTRAIT avec (tanou ou arthur) (les noms de base sont mad, Razani et Kemo) -->
</div>
</div>
</br>
</br>
<div id="Ameli test">
<div>
<div class="insured_Beneficiary_number">1234567891011</div>
<div class="insured_insured_number">9878654321254</div>
<div class="insured_address">7 rue de la grenouillère, paris 75010</div>
<a href="/retriever-public/Kemo_EXTRAIT_RCS.pdf" download id="dl_kbis">Attestation de droits du bénéficiaire</a>
<div class="insured_notice_datestart">01/01/2020</div>
<div class="insured_notice_dateend">31/12/2020</div>
</div>
</div>
<div id="rawvalues">
<div id="personalEmployment">
<p>Activité non salariée</p>
<p>Retraitée</p>
<p>Retraité</p>
<p>travailleur indépendant</p>
<p>Activité salariée</p>
<p>Chômage</p>
<p>Sans activité</p>
<p>Chômage avec activité professionnelle ou en formation</p>
<p>Étudiante salariée</p>
<p>Étudiante salarié</p>
<p>Étudiante</p>
<p>Étudiant</p>
<p>Apprenti</p>
<p>Apprentie</p>
<p>Scolarisé dans un établissement</p>
<p>Activité à déclarer</p>
<p>Activité non salariée, auto-entrepreneur</p>
</div>
<div id="allowance">
<p>Prime d'activité</p>
<p>Prime d'activité majorée isolement</p>
<p>Prime exceptionnelle</p>
<p>Revenu de solidarité active</p>
<p>Asfr Reversement pension alimentaire</p>
<p>Aide personnalisée au logement</p>
<p>Allocation de logement</p>
<p>Allocation adulte handicapé</p>
<p>Allocation de base - Paje</p>
<p>Allocations familiales modulées</p>
<p>Prime à la naissance ou à l'adoption - Paje</p>
<p>Allocation de rentrée scolaire</p>
<p>Allocation de soutien familial</p>
<p>Complément familial</p>
<p>Complément de prestations</p>
<p>Aide exceptionnelle de solidarité</p>
<p>Complément de libre choix du mode de garde - Paje</p>
<p>Reversement de trop-payé</p>
<p>Prestation partagée d'éducation de l'enfant</p>
<p>Allocation</p>
<p>Asfr Arriéré pension alimentaire</p>
<p>Prime d'activité majorée</p>
<p>Majoration parent isolé</p>
<p>Majoration</p>
</div>
</div>
<div id="birthdate_morris">1989-02-15</div>
<a href="https://www.solven.eu/retriever-public/pdf/avis-impot-2019.pdf" download id="dl_avis_impot_floa">impots</a>
<a href="https://www.solven.eu/retriever-public/pdf/ribsoge.pdf" download id="dl_rib_soge">soge</a>
<a href="https://www.solven.eu/retriever-public/pdf/RIBboursourama.pdf" download id="dl_rib_bourso">bourso</a>
<a href="https://www.solven.eu/retriever-public/pdf/ribbanquepostal.pdf" download id="dl_rib_banquepostal">banque postale</a>
<!-- URSSAF AUTO -->
<ul class="tonormalized">
<li>6 VC FERME DE LA CHAPELLE 60300 FONTAINE CHAALIS</li>
<li>1 RUE DE LA MENAGERIE 10 AV DE LA GARE 60580 COYE LA FORET</li>
<li>56 LA BLANCHE VOIE 76770 HOUPPEVILLE</li>
<li>13 CHE DU HALAGE 59272 DON</li>
<li>11 RUE DU GOUVERNEMENT 01600 TREVOUX</li>
<li>74 CHE DE RONDE 82210 ANGEVILLE</li>
</ul>
<main _ngcontent-c12="" id="contenu" style="clear: both;"><!----><!----><div _ngcontent-c12=""><p _ngcontent-c12=""><strong _ngcontent-c12="">Dark Vador - Siret 84402781400022 - Commerçant obscur</strong></p><p _ngcontent-c12=""> Vous avez opté pour le versement libératoire de l'impôt sur le revenu. </p></div><div _ngcontent-c12="" class="table-responsive tableau_recapitulatif sans_legende"><table _ngcontent-c12="" class="table table-bordered table-striped"><caption _ngcontent-c12="">Informations sur la déclaration</caption><tbody _ngcontent-c12=""><!----><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row">Numéro d'accusé de reception</th><td _ngcontent-c12="" class="text-right">D005005068</td></tr><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row">Millésime de la déclaration</th><td _ngcontent-c12="" class="text-right">Décembre 2022</td></tr><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row">Date et heure d'échéance</th><td _ngcontent-c12="" class="text-right">le 31/01/2023 à 23:59</td></tr><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row">Date et heure de la déclaration</th><td _ngcontent-c12="" class="text-right">le 06/01/2023 à 17:12</td></tr><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row">Origine de la déclaration</th><td _ngcontent-c12="" class="text-right"> site internet <span _ngcontent-c12="" class="icon-desktop"></span></td></tr><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row">Nom et prénom de la personne ayant effectué la déclaration</th><td _ngcontent-c12="" class="text-right">Dark Vador</td></tr><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row">SIRET</th><td _ngcontent-c12="" class="text-right">84401781400022</td></tr></tbody></table></div><!----><!----><h3 _ngcontent-c12="">Déclaration</h3><div _ngcontent-c12="" class="table-responsive tableau_recapitulatif sans_legende"><table _ngcontent-c12="" class="table table-bordered table-striped"><caption _ngcontent-c12="">Déclaration</caption><tbody _ngcontent-c12=""><!----><!----><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row">Chiffre d'affaires des autres prestations de services</th><td _ngcontent-c12="" class="text-right">7 840,00 €</td></tr><!----><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row">Chiffre d'affaires des prestations de services commerciales ou artisanales</th><td _ngcontent-c12="" class="text-right">0,00 €</td></tr><!----><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row">Chiffre d'affaires des ventes de marchandises</th><td _ngcontent-c12="" class="text-right">0,00 €</td></tr></tbody></table></div><h3 _ngcontent-c12="">Montant à payer</h3><div _ngcontent-c12="" class="table-responsive tableau_recapitulatif sans_legende"><table _ngcontent-c12="" class="table table-bordered table-striped"><caption _ngcontent-c12="">Montant à payer</caption><tbody _ngcontent-c12=""><tr _ngcontent-c12=""><th _ngcontent-c12="" class="font-weight-bold">Cotisations et contributions</th><td _ngcontent-c12=""></td></tr><!----><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row"><span _ngcontent-c12="" class="float-left" style="max-width: calc(100% - 50px);">538 - Prestations de services (BIC)</span><span _ngcontent-c12="" class="float-right">21,2 %</span></th><td _ngcontent-c12="" class="text-right">0,00 €</td></tr><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row"><span _ngcontent-c12="" class="float-left" style="max-width: calc(100% - 50px);">528 - Vente de marchandises (BIC)</span><span _ngcontent-c12="" class="float-right">12,3 %</span></th><td _ngcontent-c12="" class="text-right">0,00 €</td></tr><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row"><span _ngcontent-c12="" class="float-left" style="max-width: calc(100% - 50px);">791 - Prestations de services (BNC)</span><span _ngcontent-c12="" class="float-right">21,1 %</span></th><td _ngcontent-c12="" class="text-right">1 654,00 €</td></tr><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row"><span _ngcontent-c12="" class="float-left" style="max-width: calc(100% - 50px);">520 - Versement liberatoire de l'impot sur le revenu (Prestations BIC)</span><span _ngcontent-c12="" class="float-right">1,7 %</span></th><td _ngcontent-c12="" class="text-right">0,00 €</td></tr><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row"><span _ngcontent-c12="" class="float-left" style="max-width: calc(100% - 50px);">510 - Versement liberatoire de l'impot sur le revenu (vente BIC)</span><span _ngcontent-c12="" class="float-right">1 %</span></th><td _ngcontent-c12="" class="text-right">0,00 €</td></tr><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row"><span _ngcontent-c12="" class="float-left" style="max-width: calc(100% - 50px);">573 - Versement liberatoire de l'impot sur le revenu (Prestations BNC)</span><span _ngcontent-c12="" class="float-right">2,2 %</span></th><td _ngcontent-c12="" class="text-right">172,00 €</td></tr><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row"><span _ngcontent-c12="" class="float-left" style="max-width: calc(100% - 50px);">578 - Formation prof.liberale obligatoire</span><span _ngcontent-c12="" class="float-right">0,2 %</span></th><td _ngcontent-c12="" class="text-right">16,00 €</td></tr><!----><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row"></th><td _ngcontent-c12="" class="text-right"><span _ngcontent-c12="" class="float-left">(+)</span><span _ngcontent-c12="" class="float-right">1 842,00 €</span></td></tr><!----><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row">Déduction éventuelle</th><td _ngcontent-c12="" class="text-right"><span _ngcontent-c12="" class="float-left">(-)</span><span _ngcontent-c12="" class="float-right">0,00 €</span></td></tr><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row">Montant à payer</th><td _ngcontent-c12="" class="text-right"><span _ngcontent-c12="" class="float-left">(=)</span><span _ngcontent-c12="" class="float-right">1 842,00 €</span></td></tr></tbody></table></div><!----><!----><!----><!----><h3 _ngcontent-c12="">Télépaiement</h3><div _ngcontent-c12="" class="table-responsive tableau_recapitulatif sans_legende"><table _ngcontent-c12="" class="table table-bordered table-striped"><caption _ngcontent-c12="">Télépaiement</caption><tbody _ngcontent-c12=""><!----><!----><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row"> SOCIETE GENERALE S A <br _ngcontent-c12=""><span _ngcontent-c12="" class="float-left">BIC: SOGEFRPP</span><span _ngcontent-c12="" class="float-right">IBAN: FR76 3000 3017 7100 0506 5190 679</span></th><td _ngcontent-c12="" class="text-right"><span _ngcontent-c12="" class="float-left">(+)</span><span _ngcontent-c12="" class="float-right">1 842,00 €</span></td></tr><tr _ngcontent-c12=""><th _ngcontent-c12="" scope="row">Montant du télépaiement</th><td _ngcontent-c12=""><span _ngcontent-c12="" class="float-left">(=)</span><span _ngcontent-c12="" class="float-right">1 842,00 €</span></td></tr></tbody></table><p _ngcontent-c12="" class="font-weight-bold">* Le montant de votre télépaiement sera prélevé à la date d'exigibilité de l'échéance</p></div><!----><!----><div _ngcontent-c12="" class="row"><div _ngcontent-c12="" class="col-4"></div><div _ngcontent-c12="" class="col-4"><!----></div><!----><!----><div _ngcontent-c12="" class="col-4 barre_boutons"><button _ngcontent-c12="" class="btn bouton_fonce ml-2 float-right" type="button" value="Justificatif">Justificatif</button></div></div><div _ngcontent-c12=""></div></main>
<div class="govuk-width-container">
<!-- ACCOUNT MENU -->
<nav id="secondary-nav" class="hmrc-account-menu" aria-label="Account" data-module="hmrc-account-menu">
<!-- LEFT ALIGNED ITEMS -->
<a href="https://www.tax.service.gov.uk/personal-account" class="hmrc-account-menu__link hmrc-account-menu__link--home
" id="menu.left.0">
<span class="hmrc-account-icon hmrc-account-icon--home">
Account home
</span>
</a>
<!-- LEFT ALIGNED ITEMS -->
<a id="menu.name" href="https://www.tax.service.gov.uk/check-income-tax/your-income-calculation-details/5#" class="hmrc-account-menu__link hmrc-account-menu__link--menu js-hidden js-visible" tabindex="-1" aria-hidden="true" aria-expanded="false">
Account menu
</a>
<ul class="hmrc-account-menu__main">
<li class="hmrc-account-menu__link--back hidden" aria-hidden="false">
<a id="menu.back" href="https://www.tax.service.gov.uk/check-income-tax/your-income-calculation-details/5#" tabindex="-1" class="hmrc-account-menu__link">
Back
</a>
</li>
<!-- RIGHT ALIGNED ITEMS -->
<li>
<a href="https://www.tax.service.gov.uk/personal-account/messages" class="hmrc-account-menu__link " id="menu.right.0">
<span class="">
Messages
</span>
</a>
</li>
<li>
<a href="https://www.tax.service.gov.uk/track" class="hmrc-account-menu__link " id="menu.right.1">
<span class="">
Check progress
</span>
</a>
</li>
<li>
<a href="https://www.tax.service.gov.uk/personal-account/profile-and-settings" class="hmrc-account-menu__link " id="menu.right.2">
<span class="">
Profile and settings
</span>
</a>
</li>
<li>
<a href="https://www.tax.service.gov.uk/check-income-tax/signout" class="hmrc-account-menu__link " id="menu.right.4">
<span class="">
Sign out
</span>
</a>
</li>
<!-- RIGHT ALIGNED ITEMS -->
</ul>
</nav>
<div class="govuk-grid-row">
<div class="govuk-grid-column-one-half">
<div class="govuk-!-display-inline-block js-enabled">
<a href="https://www.tax.service.gov.uk/check-income-tax/your-income-calculation-details/5#" class="govuk-back-link" data-module="hmrc-back-link">Back</a>
</div>
</div>
<div class="govuk-grid-column-one-half">
<nav class="hmrc-language-select" aria-label="Language switcher">
<ul class="hmrc-language-select__list">
<li class="hmrc-language-select__list-item">
<span aria-current="true">English</span>
</li>
<li class="hmrc-language-select__list-item">
<a href="https://www.tax.service.gov.uk/check-income-tax/hmrc-frontend/language/cy" hreflang="cy" lang="cy" rel="alternate" class="govuk-link" data-journey-click="link - click:lang-select:Cymraeg">
<span class="govuk-visually-hidden">Newid yr iaith ir Gymraeg</span>
<span aria-hidden="true">Cymraeg</span>
</a>
</li>
</ul>
</nav>
</div>
</div>
<main class="govuk-main-wrapper govuk-main-wrapper--auto-spacing" id="main-content">
<div class="govuk-grid-row">
<div class="govuk-grid-column-full">
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
<div class="govuk-grid-row grid-row">
<div class="govuk-grid-column-full column-full">
<div class="print-banner">
<div class="hmrc-logo"><img src="https://www.tax.service.gov.uk/check-income-tax/assets/images/HMRC-logo.png" alt="HM Revenue & Customs"></div>
<div class="name"><h4 class="govuk-heading-s">
John Smith
</h4></div>
</div>
</div>
</div>
<h2 class="govuk-caption-xl hmrc-caption-xl carry-over">
<span class="govuk-visually-hidden">This section is </span>Income received to date
</h2>
<h1 class="govuk-heading-xl carry-over">Taxable income from Example Ltd
</h1>
</div>
<div class="govuk-grid-column-two-thirds">
<div class="subsection">
<p class="govuk-body">Income Tax and National Insurance paid to 25 June 2024</p>
<p class="govuk-body">Example Ltd has sent us this information.</p>
</div>
<table id="taxable-income-table" class="govuk-table">
<caption class="govuk-visually-hidden">Dates and amounts</caption>
<thead class="govuk-table__head">
<tr class="govuk-table__row">
<th scope="col" class="govuk-table__header govuk-table__header--text">Date</th>
<th scope="col" class="govuk-table__header govuk-table__header--numeric">Taxable income (£)</th>
<th scope="col" class="govuk-table__header govuk-table__header--numeric">Income Tax paid (£)</th>
<th scope="col" class="govuk-table__header govuk-table__header--numeric">National Insurance paid (£)</th>
</tr>
</thead>
<tbody class="govuk-table__body">
<tr class=" govuk-table__row">
<td class="govuk-table__cell">25 October 2024</td>
<td class="govuk-table__cell govuk-table__cell--numeric">5,350.11</td>
<td class="govuk-table__cell govuk-table__cell--numeric">1,092.06</td>
<td class="govuk-table__cell govuk-table__cell--numeric">272.00</td>
</tr>
<tr class=" govuk-table__row">
<td class="govuk-table__cell">25 November 2024</td>
<td class="govuk-table__cell govuk-table__cell--numeric">5,350.11</td>
<td class="govuk-table__cell govuk-table__cell--numeric">1,092.47</td>
<td class="govuk-table__cell govuk-table__cell--numeric">272.00</td>
</tr>
<tr class=" govuk-table__row">
<td class="govuk-table__cell">25 December 2024</td>
<td class="govuk-table__cell govuk-table__cell--numeric">5,350.11</td>
<td class="govuk-table__cell govuk-table__cell--numeric">1,092.47</td>
<td class="govuk-table__cell govuk-table__cell--numeric">272.00</td>
</tr>
<tr class="govuk-table__row">
<td class="govuk-table__header">Total</td>
<td class="govuk-table__header govuk-table__header--numeric">16,050.33</td>
<td class="govuk-table__header govuk-table__header--numeric">3,277.00</td>
<td class="govuk-table__header govuk-table__header--numeric">816.00</td>
</tr>
</tbody>
</table>
<h2 class="govuk-heading-s">Using the figures supplied by your employer we estimate your annual taxable income from them will be £65,928.</h2>
<div>
<p class="govuk-body" id="payrolling1">Your employer may be including your company benefits and expenses in their company payroll. If they do you must include their value in any change you make to your estimated income or you may pay too little tax.</p>
<p class="govuk-body" id="payrolling2">Please contact your employer if you have questions about their value.</p>
</div>
<p class="govuk-body" id="regularUpdateLink">You can
<a href="https://www.tax.service.gov.uk/check-income-tax/update-income/load/5" class="govuk-link">
update your estimated taxable income
</a>
for this employer if it is wrong.
</p>
<div class="print-this">
<a class="print-this__link" href="https://www.tax.service.gov.uk/check-income-tax/your-income-calculation-details/5#" id="printLink">Print this page</a>
</div>
</div>
</div>
<div class="govuk-!-margin-top-8">
<hr aria-hidden="true" class="govuk-section-break govuk-section-break--m">
<a lang="en" hreflang="en" class="govuk-link hmrc-report-technical-issue " rel="noreferrer noopener" target="_blank" href="https://www.tax.service.gov.uk/contact/report-technical-problem?newTab=true&service=TES&referrerUrl=https%3A%2F%2Fwww.tax.service.gov.uk%2Fcheck-income-tax%2Fyour-income-calculation-details%2F5">Is this page not working properly? (opens in new tab)</a>
<hr aria-hidden="true" class="govuk-section-break govuk-section-break--m">
<div class="govuk-phase-banner govuk-!-display-none-print">
<p class="govuk-phase-banner__content">
<strong class="govuk-tag govuk-phase-banner__content__tag">
Beta
</strong>
<span class="govuk-phase-banner__text">
This is a new service – your <a class="govuk-link" href="https://www.tax.service.gov.uk/contact/beta-feedback?service=TES&backUrl=https%3A%2F%2Fwww.tax.service.gov.uk%2Fcheck-income-tax%2Fyour-income-calculation-details%2F5">feedback</a> will help us to improve it.
</span>
</p>
</div>
</div>
</div>
</div>
</main>
</div>
<p class="ukni">JZ265526D</p>
<p class="ukaddress">32 Lindfield Road Stockport SK5 6SD</p>
</body>
<script>
window.onload = function exampleFunction() {
if (/Mobi|Android/i.test(navigator.userAgent)) {
if(document.getElementById("name")){
document.getElementById("kbistest").style.display = "none";
document.querySelector(".business_name").style.display = "none";
}
}
}
</script>
</html>