mirror of
https://github.com/uiverse-io/galaxy.git
synced 2025-11-28 05:00:22 +08:00
17 lines
884 B
HTML
17 lines
884 B
HTML
<!-- From Uiverse.io by Yaya12085 - Tags: form, input, phone number -->
|
|
<div class="bg-white p-4 rounded-lg max-w-[350px]">
|
|
<label class="text-gray-600 text-sm">
|
|
Phone number
|
|
</label>
|
|
<div class="relative mt-2 max-w-xs text-gray-500">
|
|
<div class="absolute inset-y-0 left-3 my-auto h-6 flex items-center border-r pr-2">
|
|
<select class="text-sm outline-none rounded-lg h-full">
|
|
<option>US</option>
|
|
<option>ES</option>
|
|
<option>MR</option>
|
|
</select>
|
|
</div>
|
|
<input type="number" placeholder="+1 (555) 000-000" class="w-full pl-[4.5rem] pr-3 py-2 appearance-none bg-transparent outline-none border focus:border-slate-600 shadow-sm rounded-lg">
|
|
</div>
|
|
</div>
|
|
|