magnetico-web/templates/Account/profile.html.twig

24 lines
535 B
Twig

<table class="table">
<thead>
<tr>
<th scope="col">Field</th>
<th scope="col">Value</th>
<th scope="col">Actions</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Username</th>
<td>{{ user.userIdentifier }}</td>
<td></td>
</tr>
<tr>
<th scope="row">Email</th>
<td>{{ user.email }}</td>
<td>
<button type="button" class="btn disabled" title="Not implemented">Change</button>
</td>
</tr>
</tbody>
</table>