<div class="mx-auto" style="max-width:350px;">
<form id="cakeform">
<h3>Make your cake!</h3>
<div class="my-3">
<label>🎂 Size Of the Cake:</label>
<div class="form-check">
<input type="radio" id="size_round6" class="form-check-input" name="selectedcake"
value="Round6" r-value="20" /><label class="form-check-label" for="size_round6">Round cake 6" - serves 8 people
($20)</label>
</div>
<div class="form-check">
<input type="radio" id="size_round8" class="form-check-input" name="selectedcake"
value="Round8" r-value="25" /><label class="form-check-label" for="size_round8">Round cake 8" - serves 12 people
($25)</label>
</div>
<div class="form-check">
<input type="radio" id="size_round10" class="form-check-input" name="selectedcake"
value="Round10" r-value="35" /><label class="form-check-label" for="size_round10">Round cake 10" - serves 16
people($35)</label>
</div>
<div class="form-check">
<input type="radio" id="size_round12" class="form-check-input" name="selectedcake"
value="Round12" r-value="75" /><label class="form-check-label" for="size_round12">Round cake 12" - serves 30
people($75)</label>
</div>
</div>
<div class="my-3">
<label for="filling" class="d-block"> 🍶 Filling:</label>
<select class="custom-select" id="filling" name="filling" >
<option r-value="0" value="None">Select Filling</option>
<option r-value="5" value="Lemon">Lemon($5)</option>
<option r-value="5" value="Custard">Custard($5)</option>
<option r-value="7" value="Fudge">Fudge($7)</option>
<option r-value="8" value="Mocha">Mocha($8)</option>
<option r-value="10" value="Raspberry">Raspberry($10)</option>
<option r-value="5" value="Pineapple">Pineapple($5)</option>
<option r-value="9" value="Dobash">Dobash($9)</option>
<option r-value="5" value="Mint">Mint($5)</option>
<option r-value="5" value="Cherry">Cherry($5)</option>
<option r-value="8" value="Apricot">Apricot($8)</option>
<option r-value="7" value="Buttercream">Buttercream($7)</option>
<option r-value="12" value="Chocolate Mousse">Chocolate Mousse($12)</option>
</select>
</div>
<div class="my-3 pl-4">
<input type="checkbox" class="form-check-input" id="includecandles" name="includecandles" />
<label for="includecandles" class="form-check-label">
🕯 Include Candles($5)</label>
</div>
<div class="my-3 pl-4">
<input type="checkbox" class="form-check-input" id="includeinscription" name="includeinscription" r-value="20"/>
<label class="form-check-label" for="includeinscription">
🖊 Include Inscription($20)</label>
<div r-show="includeinscription">
<input type="text" class="form-control" id="theinscription" name="theinscription" placeholder="Enter Inscription" />
</div>
</div>
<div >
Total: <span r-calc="selectedcake + filling + includecandles + includeinscription" r-format="currency|usd"></span>
</div>
<h3 class="mt-5">Delivery Details:</h3>
<div class="my-3">
<label for="cakeform_name">Full Name:</label>
<input type="text" class="form-control" name="name" id="cakeform_name"/>
</div>
<div class="my-3">
<label>Phone:</label>
<input type="text" class="form-control" name="phone"/>
</div>
<button type="submit" class="btn btn-primary btn-lg">Order</button>
</form>
</div>
To seamlessly integrate the form code from ReusableForms.com into your web page, follow these simple steps:
The form code provided above is for the client side only. To fully benefit from the form's features, you'll need a back-end form processor. Ratufa is one such service, and integrating with it is straightforward. Watch the video demo for a step-by-step example.
To receive email notifications upon form submissions, store submission records, and search through them later, you'll need a back-end processor. Here's how to set one up: