2024-08-31 22:29:32 +00:00
|
|
|
{% ELDEF main JSON pres JSON userinfo JSON alienprofile %}
|
2024-08-29 17:46:29 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2024-08-31 22:29:32 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2024-09-02 09:34:49 +00:00
|
|
|
<link rel="icon" type="image/png" href="/assets/img/favicon.png">
|
2024-08-31 22:29:32 +00:00
|
|
|
<link rel="stylesheet" href="/assets/css/common.css">
|
|
|
|
<!-- This page is so simple, that it does not even have it's separate css file -->
|
|
|
|
<title>User Profile</title>
|
2024-08-29 17:46:29 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-08-31 22:29:32 +00:00
|
|
|
|
2024-09-04 09:39:39 +00:00
|
|
|
<div class="document-container resp-container">
|
2024-08-31 22:29:32 +00:00
|
|
|
<div id="navigation-panel" class="panel">
|
|
|
|
<a href="/list-rooms" id="go-to-chat-list" class="panel-thing">
|
|
|
|
<img alt="Go to list of chats" src="/assets/img/list-rooms.svg" width="32px">
|
|
|
|
</a>
|
|
|
|
<a href="/user/{% WRITE userinfo.nickname %}" id="go-to-my-profile" class="panel-thing">
|
|
|
|
<img alt="Go to my profile" src="/assets/img/user.svg" width="32px">
|
|
|
|
</a>
|
2024-08-29 17:46:29 +00:00
|
|
|
</div>
|
2024-08-31 22:29:32 +00:00
|
|
|
|
|
|
|
<div class="profile-container">
|
|
|
|
<h2 class="profile-name-text">{% WRITE alienprofile.name %}</h2>
|
|
|
|
<h3 class="profile-nickname-text">Nickname: {% WRITE alienprofile.nickname %}</h3>
|
|
|
|
<p class="profile-bio-text">
|
|
|
|
{% WRITE alienprofile.bio %}
|
|
|
|
</p>
|
2024-08-29 17:46:29 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-08-31 22:29:32 +00:00
|
|
|
|
2024-08-29 17:46:29 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
2024-08-31 22:29:32 +00:00
|
|
|
|
2024-08-29 17:46:29 +00:00
|
|
|
{% ENDELDEF%}
|