frontend/src/views/LoginView.vue (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<template>
<h1>Login</h1>
<p>You must authenticate with Discord to continue.</p>
<a href="/api/login">
Login with Discord
</a>
</template>
<style scoped>
a {
display: inline-block;
margin: 1rem 0;
padding: 0.75rem 1.5rem;
background-color: hsl(var(--accent));
color: hsl(var(--on-accent));
text-decoration: none;
border-radius: 5rem;
}
</style>
|