Fieldset Basic
<div class="p-6 space-y-4 bg-white rounded-lg">
<!-- Basic Fieldset -->
<fieldset class="w-full">
<legend class="text-lg font-medium text-gray-900 mb-2">Page title</legend>
<input type="text" class="w-full px-3 py-2 text-gray-700 border rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="My awesome page" />
<p class="mt-1 text-sm text-gray-500">You can edit page title later on from settings</p>
</fieldset>
</div>
Copied to clipboard