Files
HytaleMMORPG/Webapp/views/profile/account.ejs
T
gpatruno 48a1b900c7
Build / build (push) Has been cancelled
webapp
2026-06-06 21:59:51 +02:00

20 lines
711 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 coming-soon">
<h2>À venir</h2>
<p>Inventaire, historique de combat et gestion avancée du compte seront ajoutés prochainement.</p>
</section>
<%- include('../partials/page-end') %>