f0ckv2/views/admin.html

23 lines
718 B
HTML
Raw Normal View History

2023-05-03 05:13:48 +02:00
@include(snippets/header)
<div id="main">
<div class="container">
2023-11-28 22:24:40 +01: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-08 01:14:43 +02:00
total: {{ totals.total }} | tagged: {{ totals.tagged }} | untagged: {{ totals.untagged }} | sfw: {{ totals.sfw }} | nsfw: {{ totals.nsfw }}
@endif</p>
2023-11-28 22:24:40 +01: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 05:13:48 +02:00
</div>
2022-05-08 01:14:43 +02:00
</div>
2023-05-03 05:13:48 +02:00
@include(snippets/footer)