Legere/templates/listepaypal.html
√(noham)² ebe21a776f changes
2023-04-07 23:15:56 +02:00

18 lines
404 B
HTML

{% extends 'template.html' %}
{% block title %}
Fiche de personnage
{% endblock %}
{% block content %}
<form action="{{ url_for('ficheDepuisListepaypal')}}" method="post" id="formListeHist">
{% for account in liste2 %}
<button name='nom' value='{{ account["nom"] }}' disabled>
{{ account["email"] }}
<br>
{{ account["password"] }}
</button>
{% endfor %}
</form>
</ul>
{% endblock %}