25 lines
877 B
Plaintext
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') %>
|