mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 13:04:23 +00:00
Clean the awful code.
This commit is contained in:
parent
98ffbec764
commit
569cd087e7
15 changed files with 193 additions and 167 deletions
|
@ -1,25 +1,33 @@
|
|||
<template>
|
||||
<div class="w-full min-h-screen flex items-center justify-center text-center">
|
||||
<div class="border border-white w-[40%] p-16 justify-center align-center text-center rounded-md backdrop-blur-sm bg-gray-900">
|
||||
<h1 class="text-2xl">Login / Register</h1>
|
||||
<h4 class="text-sm">via OAuth Providers</h4>
|
||||
<div class="m-4 flex flex-col gap-2">
|
||||
<a href="/api/auth/google">
|
||||
<button class="gap-3 px-10 justify-between align-center text-center bg-gray-500 hover:bg-gray-700 p-2 rounded-md transition-all duration-150">
|
||||
<i class="bi bi-google"></i> <span>Google</span>
|
||||
</button>
|
||||
</a>
|
||||
<a href="/api/auth/github">
|
||||
<button class="gap-3 px-10 bg-gray-500 hover:bg-gray-700 p-2 rounded-md transition-all duration-150">
|
||||
<i class="bi bi-github"></i> <span>Github</span>
|
||||
</button>
|
||||
</a>
|
||||
<a href="/api/auth/discord">
|
||||
<button class="gap-3 px-10 bg-gray-500 hover:bg-gray-700 p-2 rounded-md transition-all duration-150">
|
||||
<i class="bi bi-discord"></i> <span>Discord</span>
|
||||
</button>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="w-full min-h-screen flex items-center justify-center text-center">
|
||||
<div
|
||||
class="border border-white w-[40%] p-16 justify-center align-center text-center rounded-md backdrop-blur-sm bg-gray-900"
|
||||
>
|
||||
<h1 class="text-2xl">Login / Register</h1>
|
||||
<h4 class="text-sm">via OAuth Providers</h4>
|
||||
<div class="m-4 flex flex-col gap-2">
|
||||
<a href="/api/auth/google">
|
||||
<button
|
||||
class="gap-3 px-10 justify-between align-center text-center bg-gray-500 hover:bg-gray-700 p-2 rounded-md transition-all duration-150"
|
||||
>
|
||||
<i class="bi bi-google"></i> <span>Google</span>
|
||||
</button>
|
||||
</a>
|
||||
<a href="/api/auth/github">
|
||||
<button
|
||||
class="gap-3 px-10 bg-gray-500 hover:bg-gray-700 p-2 rounded-md transition-all duration-150"
|
||||
>
|
||||
<i class="bi bi-github"></i> <span>Github</span>
|
||||
</button>
|
||||
</a>
|
||||
<a href="/api/auth/discord">
|
||||
<button
|
||||
class="gap-3 px-10 bg-gray-500 hover:bg-gray-700 p-2 rounded-md transition-all duration-150"
|
||||
>
|
||||
<i class="bi bi-discord"></i> <span>Discord</span>
|
||||
</button>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</div>
|
||||
</template>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue