-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinspectionPrice.html
49 lines (43 loc) · 1.99 KB
/
inspectionPrice.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="./inspectionPrice.css" type="text/css">
</head>
<body>
<div class="mainContainer">
<div class="inspectionPricingText">
<i id="upper-corner-icon" class="fas fa-search-dollar"></i>
<h2>Quick Quote For Your Inspection Price</h2>
<!-- <hr> -->
<p>Our pre-purchase inspection price is based on square footage of the home. Enter the square footage of the property to find the base price for your inspection.<br><br><i>This price does not include add-on inspections.</i></p>
</div>
<div class="inspectionPricingInput">
<form class="IP-mainform" autocomplete="off" onsubmit="return false">
<div class="formRow">
<i class="fas fa-ruler-combined"></i>
<input id="HomeSquareFootage" type="text" name="sqft" value="" placeholder="Square Footage" onfocus="this.placeholder = ''"><span id="measureUnit">sqft</span>
</div>
<div class="formRow" id="checkbuttonID">
<input class="priceCheckbox" id="condoCheck" type="checkbox" name="condo" value="condo">
<label for="condoCheck"> Is this a condo?</label>
</div>
<div class="formRow" id="checkbuttonID">
<input class="priceCheckbox" id="newConst" type="checkbox" name="newConst" value="newConst">
<label for="newConst"> Is it a brand new home?</label>
</div>
<div>
<button id="submitButtonSQFT" name="submitbutton" type="submit">Find My Price</button>
</div>
</form>
<br>
</div>
<div id="pricingReturn">
</div>
<br>
<button id="resetPriceCalc" type="button" name="resetPriceCalc">Start Over</button>
</div>
<div class="shape-bg"></div>
<div class="shape-bg2"></div>
<script src="./scripts/node_modules/jquery/dist/jquery.js" type="text/javascript"></script>
<script src="./inspectionPrice.js" type="text/javascript"></script>
<script src="https://kit.fontawesome.com/b0e66517b0.js" crossorigin="anonymous"></script>
</body>