You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sae_2a_anglais/Project/php/templates/vocabList.html

23 lines
744 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Users</title>
<link href="{{base}}/css/styles.css" rel="stylesheet" />
<link rel="icon" type="image/x-icon" href="{{base}}/assets/favicon.ico"/>
<title>Manage lists</title>
</head>
<body class="min-vh-100 d-flex justify-content-center align-items-center">
{% include 'navBar.twig' %}
{% if vocabularies is defined %}
<div class="w-50 d-flex flex-column gap-3">
{% for row in vocabularies %}
<a href="{{base}}/student/{{userID}}/{{jeu}}?idVoc={{row.id}}">
<input class="w-100 btn btn-primary rounded-4 fs-1" style="height: 17vh" type="button" value="{{row.name}}"/>
</a>
{% endfor %}
</div>
{% endif %}
</body>
</html>