{% ELDEF main JSON pres JSON userinfo JSON alienprofile %}
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <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>
</head>
<body>

    <div id="document-container">
        <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>
        </div>

        <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>
        </div>
    </div>

</body>
</html>

{% ENDELDEF%}