40118a0edc
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #13
31 lines
759 B
Twig
31 lines
759 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>
|
|
<tr>
|
|
<th scope="row">Password</th>
|
|
<td>********</td>
|
|
<td>
|
|
<a role="button" class="btn btn-primary" href="{{ path('user_account_password_change') }}">Change</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table> |