JSFiddle - React, Tailwind, and code Playground
by ChrisStanyon
HTML
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<div class="container">
<form action="registrationcreate.php" method="post">
<div class = "form-row mb-5">
<div class="form group col-md-6">
<label for="lblfirstname">First Name</label>
<input type="text" name="FirstName" class="form-control" placeholder="Enter your answer">
</div>
<div class="form group col-md-6">
<label for="lbllastname">Last Name</label>
<input type="text" name="LastName" class="form-control" placeholder="Enter your answer">
</div>
</div>
<div class="form-row mb-5">
<div class="form group col-md-12">
<label for="lbladdress">Current Address</label>
<input type="text" name="Address" class="form-control" placeholder="Enter your answer">
</div>
</div>
<div class="form-row mb-5">
<div class="form group col-md-6">
<label for="lblcity">City</label>
<input type="text" name="City" class="form-control" placeholder="Enter your answer">
</div>
<div class="form group col-md-6">
<label for="lblzip">Zip</label>
<input type="text" name="Zip" class="form-control" placeholder="Enter your answer">
</div>
</div>
</form>
</div>