mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-16 17:05:05 +03:00
53 lines
1.2 KiB
Text
53 lines
1.2 KiB
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<%- include("extra/header", {title: "Main page!" }) %>
|
|
<body>
|
|
|
|
<%- include("extra/navbar") %>
|
|
|
|
<% if (user) { %>
|
|
<h1>Welcome, <a href=<%=user.getLink() %>> <%= user.name %></a>
|
|
<img class="circle" src=<%=user.avatar %> alt=<%= user.name %>>
|
|
<br>
|
|
You can log out of the site here:
|
|
<a href="/login/"><button>LOGOUT</button> </a>
|
|
</h1>
|
|
|
|
<br>
|
|
<% } else { %>
|
|
<h1>Welcome, Guest!<br>You can press the button to register:
|
|
<a href="/register/"> <button class="big">REGISTER</button> </a>
|
|
|
|
</h1>
|
|
<% } %>
|
|
<h1>Statistics:</h1>
|
|
<ul>
|
|
<li>
|
|
<h3>Message count: <b>
|
|
<%= messages %>
|
|
</b></h3>
|
|
</li>
|
|
<li>
|
|
<h3>User count: <b>
|
|
<%= users %>
|
|
</b></h3>
|
|
</li>
|
|
<li>
|
|
<h3>Thread count: <b>
|
|
<%= threads %>
|
|
</b></h3>
|
|
</li>
|
|
<li>
|
|
<h3>Memory usage: <b>
|
|
<%= mem.toFixed(2); %> MB
|
|
</b></h3>
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<%- include("extra/footer") %>
|
|
|
|
</body>
|
|
|
|
</html>
|