Skip to content

Instantly share code, notes, and snippets.

@iamdtang
Created January 30, 2024 23:33
Show Gist options
  • Save iamdtang/fec4a2d751556526c5334f076032def4 to your computer and use it in GitHub Desktop.
Save iamdtang/fec4a2d751556526c5334f076032def4 to your computer and use it in GitHub Desktop.
<form action="" method="POST">
<div class="mb-3">
<label for="title" class="form-label">Title</label>
<input type="text" name="title" id="title" class="form-control">
<small class="text-danger">Some error</small>
</div>
<div class="mb-3">
<label for="artist" class="form-label">Artist</label>
<select name="artist" id="artist" class="form-select">
<option value="">-- Select Artist --</option>
</select>
<small class="text-danger">Some error</small>
</div>
<button type="submit" class="btn btn-primary">
Save
</button>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment