Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions donate.html
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,26 @@ <h1 class="sm:text-3xl text-2xl donate-h1 font-medium title-font mb-4 text-amber
required />
<p id="breed-helper" class="help">Enter valid pet breed</p>
</div>
</div>
<div class="p-2 w-1/2">
<div class="relative">
<label for="pet-sex" class="leading-7 text-sm text-gray-900">Pet Sex</label>
<input type="text" id="petsex" name="petsex" placeholder="Female/Male" autocomplete="off"
onchange="displayErrorMsg(this.name)"
class="w-full bg-gray-100 bg-opacity-50 rounded border border-gray-300 focus:border-indigo-500 focus:bg-white focus:ring-2 focus:ring-indigo-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out"
required />
<p id="petsex-helper" class="help">Enter valid pet sex</p>
</div>
</div>
<div class="p-2 w-1/2">
<div class="relative">
<label for="pet-age" class="leading-7 text-sm text-gray-900">Pet Age</label>
<input type="text" id="petage" name="petage" placeholder="7" autocomplete="off"
onchange="displayErrorMsg(this.name)"
class="w-full bg-gray-100 bg-opacity-50 rounded border border-gray-300 focus:border-indigo-500 focus:bg-white focus:ring-2 focus:ring-indigo-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out"
required />
<p id="petage-helper" class="help">Enter valid pet age</p>
</div>
</div>
<div class="p-2 w-full">
<div class="relative">
Expand Down