Files
HytaleMMORPG/Webapp/views/profile/account.ejs
T
gpatruno 836499d10d
Build / build (push) Has been cancelled
selector and web
2026-06-07 00:35:18 +02:00

25 lines
877 B
Plaintext

<%- include('../partials/page-start') %>
<%- include('../partials/page-header', { title: 'Mon profil', subtitle: 'Connecté en tant que ' + player.display_name }) %>
<div class="profile-actions">
<form method="post" action="/profile/logout">
<button type="submit" class="btn btn-secondary">Se déconnecter</button>
</form>
<a class="link" href="/players/<%= player.uuid %>">Voir le profil public</a>
</div>
<%- include('../partials/player-card', { player, group, comingSoon: false }) %>
<section class="panel">
<div class="panel-header">
<h2>Mes personnages</h2>
<span class="badge"><%= characters.length %></span>
</div>
<p class="muted section-intro">Inventaire sauvegardé à la déconnexion de chaque personnage en jeu.</p>
</section>
<%- include('../partials/characters-inventories', { characters }) %>
<%- include('../partials/page-end') %>