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.
47 lines
1.0 KiB
47 lines
1.0 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Users</title>
|
|
<link href="{{base}}/css/styles.css" rel="stylesheet" />
|
|
</head>
|
|
<style>
|
|
body {
|
|
margin-top: 5vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.content {
|
|
text-align: center;
|
|
}
|
|
|
|
table {
|
|
margin-top: 20px;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
{% include 'navBar.twig' %}
|
|
{% if vocabularies is defined %}
|
|
<div class="content">
|
|
<section>
|
|
<table>
|
|
{% for row in vocabularies %}
|
|
<tr>
|
|
<td>
|
|
<form action="{{base}}/student/{{userID}}/{{jeu}}" method="post">
|
|
<input type="hidden" name="idVoc" value="{{ row.id }}">
|
|
<input class="btn-list" type="submit" value="{{ row.name }}" />
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</section>
|
|
</div>
|
|
{% endif %}
|
|
</body>
|
|
</html> |