106 lines
2.8 KiB
Vue
106 lines
2.8 KiB
Vue
<script setup lang="ts">
|
|
import goStore, { netcode_create_game, join_game } from '~/netcode';
|
|
|
|
const config = useRuntimeConfig()
|
|
|
|
|
|
async function discordLogin() {
|
|
await navigateTo(config.public.discordLoginEndpoint, {
|
|
external: true
|
|
})
|
|
}
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="background">
|
|
<div class="title">
|
|
Entrez dans le Royaume de Héron !
|
|
</div>
|
|
|
|
<div class="middle-row">
|
|
<div class="icon">
|
|
<CardPreview :card_id="undefined"></CardPreview>
|
|
</div>
|
|
|
|
<div v-if="goStore.current_game?.started">
|
|
<b>Mode spectateur</b>
|
|
</div>
|
|
|
|
<template v-if="!goStore.current_game?.started">
|
|
<!-- <input type="text" v-model="username" />
|
|
<button @click="register(username)">LOGIN</button> -->
|
|
<button class="menu-button" @click="discordLogin()">Se connecter via Discord</button>
|
|
</template>
|
|
</div>
|
|
|
|
<footer>
|
|
<p>
|
|
Héron Realms n'est en aucun cas affilié à Hero Realms.<br>
|
|
Le concept et certains noms de cartes sont la propriété de Wise Wizard Games.<br>
|
|
Les illustrations sont la propriété de leurs auteurs respectifs (il y en a plein).<br>
|
|
Ce magnifique fond d'écran est tiré de Fire Emblem: Engage.<br>
|
|
Programmeur principal, owner du projet: Legonzaur
|
|
</p>
|
|
</footer>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.background {
|
|
background-color: #f0f0f0;
|
|
background-image: url('https://www.pockettactics.com/wp-content/sites/pockettactics/2023/01/fire-emblem-engage-review-29.jpg');
|
|
background-size: cover;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
.title {
|
|
font-family: 'Kanit', 'Roboto', sans-serif;
|
|
font-size: 64px;
|
|
color: white;
|
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
|
|
margin-bottom: 100px;
|
|
}
|
|
|
|
.middle-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 100px;
|
|
margin-bottom: 100px;
|
|
}
|
|
|
|
.menu-button {
|
|
background-color: #4CAF50;
|
|
border: none;
|
|
color: white;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-family: 'Roboto', sans-serif;
|
|
font-size: 16px;
|
|
margin: auto;
|
|
cursor: pointer;
|
|
border-radius: 12px;
|
|
padding: 20px 24px;
|
|
height: 120px;
|
|
transition-duration: 0.4s;
|
|
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
}
|
|
|
|
footer {
|
|
position: absolute;
|
|
bottom: 0;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
color: white;
|
|
width: 100%;
|
|
font-family: 'Roboto', sans-serif;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
}
|
|
</style> |