mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-24 00:01:03 +08:00
14 lines
621 B
Vue
14 lines
621 B
Vue
|
|
<template>
|
|
<div class="flex flex-col items-center justify-center h-full">
|
|
<form class="flex flex-col items-center justify-center h-full">
|
|
<div class="text-xl mb-4 text-bold">Login / Register</div>
|
|
|
|
<input type="text" placeholder="Username" class="mb-2 p-2 border rounded" />
|
|
<input type="password" placeholder="Password" class="p-2 border rounded mb-2" />
|
|
<button class="bg-black text-white p-2 rounded transition duration-200">
|
|
Log In
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</template> |