2025-02-26 22:12:46 -05:00
|
|
|
<div class='main'>
|
|
|
|
<h1 class="header-big">
|
|
|
|
<img src="/uploads/pfp_<%= username %>.png" class="avatar-img">
|
|
|
|
<span><%= username %></span>
|
|
|
|
</h1>
|
2025-03-04 20:30:22 -05:00
|
|
|
<div><%- include ('formatted.ejs', {content: desc || [['A very cool user!']]}) %></div>
|
2025-02-27 11:51:22 -05:00
|
|
|
<%- include ('vblock.ejs', {link: `/walls/get/users/${username}/0`, icon: '/icon.svg', name: 'Replies'}) %>
|
2025-02-26 22:12:46 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<% if (isYou) { %>
|
2025-03-04 20:30:22 -05:00
|
|
|
<%- include('form.ejs', {
|
2025-02-26 22:12:46 -05:00
|
|
|
title: "Your Settings",
|
|
|
|
message: 'Configure your profile.',
|
|
|
|
action: "/api/file/you/settings",
|
|
|
|
inputs: [
|
|
|
|
{
|
|
|
|
"key": "Avatar",
|
|
|
|
"type": "file",
|
|
|
|
"name": "file",
|
|
|
|
"default": ""
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}) %>
|
|
|
|
<% } %>
|