This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: finished login page and added a "Theme-Toggle"-Button
- Loading branch information
Neuery17Alt
committed
Mar 18, 2024
1 parent
c4f7375
commit 88e99f6
Showing
2 changed files
with
21 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<script setup lang="ts"> | ||
</script> | ||
|
||
<template> | ||
<div class="sm:flex sm:justify-center"> | ||
<UContainer | ||
class="w-full p-0 sm:w-[425px] sm:pl-0 sm:border sm:border-solid sm:dark:shadow-none sm:dark:border-neutral-700 sm:border-neutral-200 sm:p-8 sm:rounded-md sm:shadow-md sm:shadow-neutral-300"> | ||
<LoginInput label="Username" margin="mb-4"/> | ||
<LoginInput label="Password" margin="mb-8"/> | ||
<UButton class="dark:bg-blue-500 flex justify-center w-full dark:text-white">Sign in | ||
</UButton> | ||
</UContainer> | ||
</div> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |