Fieldset

Fieldset gruperer relaterte elementer. Inkluderer legend som tittel og label som beskrivelse.

Fieldset med legend og label

Page title

You can edit page title later on from settings

<fieldset class="fieldset">
  <legend class="fieldset-legend">Page title</legend>
  <input type="text" class="input" placeholder="My awesome page" />
  <p class="label">You can edit page title later on from settings</p>
</fieldset>

Joined fieldset

Settings
<fieldset class="fieldset bg-base-200 border-base-300 rounded-box w-xs border p-4">
  <legend class="fieldset-legend">Settings</legend>
  <div class="join">
    <input type="text" class="input join-item" placeholder="Product name" />
    <button class="btn join-item">save</button>
  </div>
</fieldset>

Login-eksempel

Login

<fieldset class="fieldset bg-base-200 border-base-300 rounded-box w-xs border p-4">
  <legend class="fieldset-legend">Login</legend>

<label class="label">Email</label>
<input type="email" class="input" placeholder="Email" />

<label class="label">Password</label>
<input type="password" class="input" placeholder="Password" />

<button class="btn btn-neutral mt-4">Login</button>

</fieldset>