mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
19 lines
No EOL
645 B
HTML
19 lines
No EOL
645 B
HTML
<!-- From Uiverse.io by gaeliam100 - Website: https://www.youtube.com/watch?v=ZROj1Wt45yc - Name: Laratips - Tags: simple, input, clean -->
|
|
<div class="flex items-center justify-center min-h-screen">
|
|
<div class="relative">
|
|
<input
|
|
class="border-b border-gray-300 py-1 focus:border-b-2 focus:border-blue-700 transition-colors focus:outline-none peer bg-inherit"
|
|
type="text"
|
|
name="username"
|
|
id="username"
|
|
/>
|
|
<label
|
|
class="absolute left-0 top-1 cursor-text peer-focus:text-xs peer-focus:-top-4 transition-all peer-focus:text-blue-700"
|
|
for="username"
|
|
>Name</label
|
|
>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|