21 lines
498 B
Twig
21 lines
498 B
Twig
{% extends "base.html.twig" %}
|
|
|
|
{% block title %}Dashboard{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Dashboard</h2>
|
|
|
|
<p>Hello, {{ username }}!</p>
|
|
|
|
<pre>
|
|
ID: {{ user.getId() }}
|
|
username: {{ user.getUsername() }}
|
|
password: {{ user.getPasswordHash() }}
|
|
is_active: {{ user.isActive() }}
|
|
created_at: {{ user.getCreatedAt() | date() }}
|
|
modified_at: {{ user.getModifiedAt() | date() }}
|
|
</pre>
|
|
|
|
<a href="/logout">Logout.</a>
|
|
{% endblock %}
|