Update user.ejs

This commit is contained in:
tokmak0 2022-08-28 18:10:41 +03:00 committed by GitHub
parent 14bf6d45a4
commit 8b91d8d182
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,42 +3,57 @@
<%- include("extra/meta", {title: member.name }) %> <%- include("extra/meta", {title: member.name }) %>
<link rel="stylesheet" href="/css/user.css" />
<body style="text-align: center;"> <body >
<%- include("extra/navbar") %> <%- include("extra/navbar") %>
<ul> <div class="content">
<li> <div class="box" style="justify-content:center;">
<h1 style="color: #4d18e6;">Avatar:</h1> <img style="width:100px;height:100px;border-radius:50%;" src="<%=member.avatar %>">
<img style="width:256px;height:256px;" src="<%=member.avatar %>"> </div>
</li> <div class="box">
<h2 class="box-title">Name: <%= member.name %>
<li>
<h2 style="color: #606060;">Name: <%= member.name %>
</h2> </h2>
</li> <h2 class="box-title">
<li> <%= member.name %>
<h2 style="color: #606060;">Created at: </h2>
</div>
<div class="box">
<h2 class="box-title">Created at:
</h2>
<h2 class="box-title">
<%= new Date(member.time).toLocaleString() %> <%= new Date(member.time).toLocaleString() %>
</h2> </h2>
</div>
<div class="box">
<h2 class="box-title">Is admin?
</li>
<li>
<h2 style="color: #606060;">Is admin? <%= member.admin ? "Yes" : "No" %>
</h2> </h2>
</li> <h2 class="box-title">
<%= member.admin ? "Yes" : "No" %>
<li>
<h2 style="color: #606060;"> Message: <%= counts.message %>
</h2> </h2>
</li> </div>
<li>
<h2 style="color: #606060;"> Thread: <%= counts.thread %>
</h2>
</li>
</ul>
<div class="box">
<h2 class="box-title"> Message:
</h2>
<h2 class="box-title">
<%= counts.message %>
</h2>
</div>
<div class="box">
<h2 class="box-title"> Thread:
</h2>
<h2 class="box-title">
<%= counts.thread %>
</h2>
</div>
</div>
<% if (user?.admin && !member.deleted) {%> <% if (user?.admin && !member.deleted) {%>
<a class="big" id="admin">Give admin permissions!</a> <a class="big" id="admin">Give admin permissions!</a>
@ -56,14 +71,13 @@
if (response.admin) if (response.admin)
return alert("Making admin of " + response.name + " is success!"); return alert("Making admin of " + response.name + " is success!");
} else if (e.target.id == "delete") { }
const response = await request("/api/users/<%= member.id %>/delete"); const response = await request("/api/users/<%= member.id %>/delete");
if (!response.deleted) return; if (!response.deleted) return
alert("User is deleted!"); alert("User is deleted!");
location.reload() location.reload()
}
}); });