mirror of
https://github.com/DarrylNixon/ghostforge
synced 2024-04-22 06:27:20 -07:00
27 lines
999 B
HTML
27 lines
999 B
HTML
<h5>Identity</h5>
|
|
<div class="form-group">
|
|
<label class="form-label form-inline">First Name
|
|
<input class="form-input" type="text" id="firstname" placeholder="First">
|
|
</label>
|
|
<label class="form-label form-inline">Middle Name
|
|
<input class="form-input" type="text" id="middlename" placeholder="Middle">
|
|
</label>
|
|
<label class="form-label form-inline">Last Name
|
|
<input class="form-input" type="text" id="lastname" placeholder="Last">
|
|
</label>
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="form-label">Ethnicities
|
|
<div class="form-group">
|
|
<select class="form-select form-inline" multiple>
|
|
<option>German</option>
|
|
<option>Irish</option>
|
|
<option>Mexican</option>
|
|
<option>Canadian</option>
|
|
<option>American</option>
|
|
<option>British</option>
|
|
<option>Chinese</option>
|
|
</select>
|
|
</div>
|
|
</label>
|
|
</div>
|