Skip to content

Instantly share code, notes, and snippets.

@planetoftheweb
Created June 27, 2019 20:13
Show Gist options
  • Save planetoftheweb/3a2760a924cbbdeadd3a14743a7facf6 to your computer and use it in GitHub Desktop.
Save planetoftheweb/3a2760a924cbbdeadd3a14743a7facf6 to your computer and use it in GitHub Desktop.
<div class="col-12">
<div class="card textcenter mt-3">
<div class="card-header bg-primary text-white">
<font-awesome-icon icon="plus" class="mr-3"/>Add Appointment
</div>
<div class="card-body">
<form id="aptForm">
<div class="form-group form-row">
<label class="col-md-2 col-form-label text-md-right" for="petName">Pet Name</label>
<div class="col-md-10">
<input
type="text"
class="form-control"
name="petName"
id="petName"
placeholder="Pet's Name"
>
</div>
</div>
<div class="form-group form-row">
<label class="col-md-2 col-form-label text-md-right" for="ownerName">Pet Owner</label>
<div class="col-md-10">
<input type="text" class="form-control" id="ownerName" placeholder="Owner's Name">
</div>
</div>
<div class="form-group form-row">
<label class="col-md-2 col-form-label text-md-right" for="aptDate">Date</label>
<div class="col-md-4">
<input type="date" class="form-control" id="aptDate">
</div>
<label class="col-md-2 col-form-label text-md-right" for="aptTime">Time</label>
<div class="col-md-4">
<input type="time" class="form-control" name="aptTime" id="aptTime">
</div>
</div>
<div class="form-group form-row">
<label class="col-md-2 text-md-right" for="aptNotes">Apt. Notes</label>
<div class="col-md-10">
<textarea
class="form-control"
rows="4"
cols="50"
name="aptNotes"
id="aptNotes"
placeholder="Appointment Notes"
></textarea>
</div>
</div>
<div class="form-group form-row mb-0">
<div class="offset-md-2 col-md-10">
<button type="submit" class="btn btn-primary d-block ml-auto">Add Appointment</button>
</div>
</div>
</form>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment