mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-27 20:50:21 +08:00
19 lines
No EOL
571 B
HTML
19 lines
No EOL
571 B
HTML
<!-- From Uiverse.io by EcheverriaJesus - Tags: simple, input, text, tailwind -->
|
|
<div class="flex justify-center items-center bg-white w-full h-full">
|
|
<div>
|
|
<label class="block text-gray-800 font-semibold text-sm" for="inputname"
|
|
>Input Name</label
|
|
>
|
|
<div class="mt-2">
|
|
<input
|
|
class="block w-56 rounded-md py-1.5 px-2 ring-1 ring-inset ring-gray-400 focus:text-gray-800"
|
|
name="inputname"
|
|
type="text"
|
|
/>
|
|
</div>
|
|
<label class="pt-1 block text-gray-500 text-sm">Some Description</label>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|