Legere/templates/listepaypal.html
2023-01-18 11:11:34 +01:00

18 lines
415 B
HTML

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