akf-forum/views/index.ejs

60 lines
1.6 KiB
Plaintext
Raw Normal View History

2022-03-13 16:16:46 +03:00
<!DOCTYPE html>
<html lang="en">
2022-08-26 20:22:46 +03:00
<%- include("extra/meta", {title: "Welcome to the Akf-forum!" }) %>
2022-03-22 21:25:09 +03:00
2022-08-24 22:39:38 +03:00
2022-08-28 19:03:32 +03:00
<body >
<link rel="stylesheet" href="/css/user.css" />
<%- include("extra/navbar") %>
2022-03-13 16:16:46 +03:00
2022-08-28 19:03:32 +03:00
<div class="content">
2022-08-28 20:04:54 +03:00
<% if (user) { %>
<h2 style="color: #4d18e6;"><div class="box-username">Welcome, <%= user.name %>
<div class="avatar"><img src="<%=user.avatar %>"></div>
</div>
You can log out of the site here:
</h2>
<a href="/login" class="btn-outline-primary">LOGOUT</a>
<br>
<% } else { %>
<h2 style="color: #4d18e6;">Welcome, Guest!<br>You can press the button to register:
<a href="/register" class="btn-outline-primary">REGISTER</a>
</h2>
<% } %>
<h2 style="color: #606060;">Statistics:</h2>
2022-08-28 19:03:32 +03:00
<div class="box">
<h2 class="box-title">Message count:</h2>
2022-08-28 20:04:54 +03:00
<h2 class="box-value"><%= messages %></h2>
2022-08-28 19:03:32 +03:00
</div>
<div class="box">
<h2 class="box-title">User count: </h2>
2022-08-28 20:04:54 +03:00
<h2 class="box-value"><%= users %> </h2>
2022-08-28 19:03:32 +03:00
</div>
2022-08-28 20:04:54 +03:00
2022-08-28 19:03:32 +03:00
<div class="box">
<h2 class="box-title">Thread count:</h2>
2022-08-28 20:04:54 +03:00
<h2 class="box-value"><%= threads %></h2>
2022-08-28 19:03:32 +03:00
</div>
<div class="box">
2022-08-28 20:04:54 +03:00
<h2 class="box-title">Memory usage:</h2>
<h2 class="box-value"><%= mem.toFixed(2); %> MB</h2>
2022-08-28 19:03:32 +03:00
</div>
</div>
2022-03-13 16:16:46 +03:00
</body>
2022-04-06 22:49:16 +03:00
</html>