@xuda.io/xuda-framework-plugin-tailwind
Version:
Xuda Tailwind UI Framework plugin
14 lines (13 loc) • 1.05 kB
HTML
<div>
<label for='email' class='block text-sm font-medium text-gray-700'>Email</label>
<div class='mt-1 relative rounded-md shadow-sm'>
<input type='email' name='email' id='email' class='block w-full pr-10 border-red-300 text-red-900 placeholder-red-300 focus:outline-none focus:ring-red-500 focus:border-red-500 sm:text-sm rounded-md' placeholder='you@example.com' value='adamwathan' aria-invalid='true' aria-describedby='email-error'>
<div class='absolute inset-y-0 right-0 pr-3 flex items-center pointer-events-none'>
<!-- Heroicon name: solid/exclamation-circle -->
<svg class='h-5 w-5 text-red-500' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor' aria-hidden='true'>
<path fill-rule='evenodd' d='M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7 4a1 1 0 11-2 0 1 1 0 012 0zm-1-9a1 1 0 00-1 1v4a1 1 0 102 0V6a1 1 0 00-1-1z' clip-rule='evenodd'></path>
</svg>
</div>
</div>
<p class='mt-2 text-sm text-red-600' id='email-error'>Your password must be less than 4 characters.</p>
</div>