Archived
Template
1
0
This repository has been archived on 2023-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
Files

15 lines
537 B
HTML
Raw Permalink Normal View History

2021-12-12 14:56:13 +01:00
{{ template "header.html" . }}
<main class="flex-shrink-0">
<div class="container">
2022-01-29 10:21:05 +01:00
<h1 class="mt-5">{{ call .Trans "Admin Dashboard" }}</h1>
{{ template "messages.html" . }}
2022-01-29 10:21:05 +01:00
<p>{{ call .Trans "You now have an authenticated session, feel free to log out using the link in the navbar above." }}</p>
<p>{{ call .Trans "Below is a chart showing the number of user sign ups to this website per month." }}</p>
{{ template "chart.html" .Chart }}
2021-12-12 14:56:13 +01:00
</div>
</main>
{{ template "footer.html" . }}