f0ckv2/views/admin.html

23 lines
718 B
HTML
Raw Normal View History

2023-05-03 03:13:48 +00:00
@include(snippets/header)
<div id="main">
<div class="container">
2023-11-28 21:24:40 +00:00
<h1>ADMINBEREICH</h1>
<h5>Hallo, {{ session.user }}</h5>
<span>Hier entsteht eine Internetpräsenz!</span><br>
<hr>
<p>f0ck stats: @if(typeof totals !== "undefined")
2022-05-07 23:14:43 +00:00
total: {{ totals.total }} | tagged: {{ totals.tagged }} | untagged: {{ totals.untagged }} | sfw: {{ totals.sfw }} | nsfw: {{ totals.nsfw }}
@endif</p>
2023-11-28 21:24:40 +00:00
<hr>
<div class="admintools">
<p>Adminwerkzeuge</p>
<ul>
<li><a href="/admin/log">Logs</a></li>
<li><a href="/admin/recover">Recover f0cks</a></li>
<li><a href="/admin/sessions">Sessions</a></li>
</ul>
</div>
2023-05-03 03:13:48 +00:00
</div>
2022-05-07 23:14:43 +00:00
</div>
2023-05-03 03:13:48 +00:00
@include(snippets/footer)