Implement basic database access and login
This commit is contained in:
parent
8be7988d97
commit
b24fe56c8a
14 changed files with 307 additions and 31 deletions
|
|
@ -7,5 +7,14 @@
|
|||
|
||||
<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 %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue