forked from MyArtverse-Project/MyArtverse
-
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.
- Loading branch information
1 parent
628d971
commit a16a4b5
Showing
3 changed files
with
22 additions
and
13 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
|
||
<template> | ||
<form class="w-3/6 p-48 m-auto"> | ||
<div class="flex flex-col relative my-3"> | ||
<label for="username" class="hidden absolute top-[-33px] text-white ">Username</label> | ||
<input name="username" id="username" type="username" class="text-black px-3 py-2 outline-none border-none" | ||
v-model="username" placeholder="Username" /> | ||
</div> | ||
<div class="flex flex-col bg-transparent border border-solid border-[#1834c9]"> | ||
<label for="password" class="peer-placeholder-shown:block ">Password</label> | ||
<input name="password" id="password" class="peer text-black" type="password" placeholder="Password" | ||
v-model="password" /> | ||
</div> | ||
</form> | ||
</template> | ||
<script lang="tsx" setup> | ||
import { ref } from 'vue' | ||
const username = ref("") | ||
const password = ref("") | ||
</script> |
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