run eslint
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
<template>
|
||||
<div class="w-full h-full text-primary flex flex-col">
|
||||
<h1 class="text-5xl font-bold text-center mt-20 mb-10">Welkom, {{ user.discord.username }}</h1>
|
||||
<div class="flex h-full w-full flex-col text-primary">
|
||||
<h1 class="mb-10 mt-20 text-center text-5xl font-bold">Welkom, {{ user.discord.username }}</h1>
|
||||
<Whitelist v-if="!user.minecraft.uuid" />
|
||||
<div v-else class="flex justify-center gap-4 flex-wrap max-w-3xl w-full">
|
||||
<div v-else class="flex w-full max-w-3xl flex-wrap justify-center gap-4">
|
||||
<img :src="'https://api.mineatar.io/face/' + user.minecraft.uuid + '?scale=16'" class="w-24 rounded shadow">
|
||||
<div class="rounded flex border-2 border-primary p-4 w-full max-w-md">
|
||||
<div class="flex w-full max-w-md rounded border-2 border-primary p-4">
|
||||
<ul class="my-auto">
|
||||
<li>Username: <b>{{ user.minecraft.username }}</b></li>
|
||||
<li>UUID: <b>{{ user.minecraft.uuid }}</b></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="w-full flex justify-center gap-4 mt-2">
|
||||
<div class="mt-2 flex w-full justify-center gap-4">
|
||||
<Button type="danger" @click="removeWhitelist">
|
||||
Remove from whitelist
|
||||
</Button>
|
||||
|
@@ -1,16 +1,16 @@
|
||||
<template>
|
||||
<div class="w-full h-screen text-primary bg-opacity-0 flex justify-center items-center flex-col px-2">
|
||||
<h1 class="sm:text-5xl text-3xl font-bold text-center mb-5">Polarcraft S5</h1>
|
||||
<p class="max-w-xl mb-10 sm:text-base text-sm">
|
||||
<b>Welkom bij Polarcraft seizoen 5!</b> Start door in te loggen met Discord en vervolgens je account te koppelen met Minecraft. Als je problemen hebt maak dan in Discord een ticket aan door het <span class="bg-black bg-opacity-50 px-2 rounded">/ticket</span> commando uit te voeren.
|
||||
<div class="flex h-screen w-full flex-col items-center justify-center bg-transparent px-2 text-primary">
|
||||
<h1 class="mb-5 text-center text-3xl font-bold sm:text-5xl">Polarcraft S5</h1>
|
||||
<p class="mb-10 max-w-xl text-sm sm:text-base">
|
||||
<b>Welkom bij Polarcraft seizoen 5!</b> Start door in te loggen met Discord en vervolgens je account te koppelen met Minecraft. Als je problemen hebt maak dan in Discord een ticket aan door het <span class="highlight">/ticket</span> commando uit te voeren.
|
||||
</p>
|
||||
<Button @click="navigateTo(config.public.redirectUrl, { external: true })">
|
||||
Log in with Discord
|
||||
<Icon size="1.6em" name="ic:baseline-discord" />
|
||||
</Button>
|
||||
|
||||
<div class="absolute top-0 left-0 -z-10 w-full h-screen overflow-hidden">
|
||||
<img src="../assets/pictures/diamond_wall.png" class="h-full w-full object-cover brightness-75 blur-[1px] scale-105">
|
||||
<div class="absolute left-0 top-0 -z-10 h-screen w-full overflow-hidden">
|
||||
<img src="../assets/pictures/diamond_wall.png" class="h-full w-full scale-105 object-cover blur-[1px] brightness-75">
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div>
|
||||
<h1 class="font-bold text-2xl text-primary">
|
||||
<h1 class="text-2xl font-bold text-primary">
|
||||
Team
|
||||
</h1>
|
||||
<TeamNone />
|
||||
|
Reference in New Issue
Block a user