Home - FlbxCup

Welcome to FlbxCup

{#if isAuthenticated} {/if}

Discover and manage tournaments with ease

{#if !isAuthenticated} Join FlbxCup Create an account to create and manage your own tournaments
{/if} {#if isAuthenticated} Public Tournaments My Tournaments
{#each publicTournaments as tournament (tournament.id)} {tournament.name} {tournament.description}
{formatDate(tournament.date)}
{tournament.participantsCount} participants
{/each}
{#if userTournaments.length === 0}

No Tournaments Yet

You haven't created any tournaments yet.

{:else}
{#each userTournaments as tournament (tournament.id)} {tournament.name} {tournament.description}
{formatDate(tournament.date)}
{tournament.participantsCount} participants
Created by you
{/each}
{/if}
{:else}

Public Tournaments

{#each publicTournaments as tournament (tournament.id)} {tournament.name} {tournament.description}
{formatDate(tournament.date)}
{tournament.participantsCount} participants
{/each}
{/if}