-
Notifications
You must be signed in to change notification settings - Fork 2
/
requestinsurance.php
68 lines (65 loc) · 3 KB
/
requestinsurance.php
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!--header-->
<?php include('header.php'); ?>
<link rel="stylesheet" type="text/css" href="css/requestinsurance.css">
<div class="back">
<!--request form-->
<div class="request">
<form action="insertinsurencedetails.php" method="POST" >
<br><center><h4>Request for Insurance</h4></center><br>
<fieldset id="field 1">
<legend>Personal details*</legend>
<br>
<lable>Full Name:</lable>
<input type="text" name="fname"><br>
<label> Name with Initials:</label>
<input type="text" name="iname"><br>
<label>NIC: </label>
<input type="text" name="NIC"><br>
<label>E_mail:</label>
<input type="text" name="email"><br>
<label>Address:</label>
<input type="text" name="address"><br>
<input type="text" name="city" placeholder="City"><br>
<input type="text" name="pcode" placeholder="Postal code"><br>
</fieldset>
<br>
<fieldset id="field 2">
<legend>Insurance details*</legend>
<br>
<div class="ipolicy">
<label>Select Insurance policy</label>
<select id="cars" name="ipolicy">
<option value="1">Rider insurance</option>
<option value="2">Tuk Tuk insurance</option>
<option value="3">Car insurance</option>
<option value="4">Commercial insurance</option>
</select>
</div>
<div class="itype"><label>Insurance type</label><br>
<select id="cars" name="itype">
<option value="1">Full</option>
<option value="2">Third Party</option>
</select>
</div>
</fieldset>
<br>
<fieldset id="field 3">
<legend>Vehicle details*</legend>
<br>
<label>Vehicle number:</label>
<input type="text" name="vnum"><br>
<label>Chassis number:</label>
<input type="text" name="cnum"><br>
<label>Engine number:</label>
<input type="text" name="enum"><br>
<label>CR number:</label>
<input type="text" name="crnum"><br>
</fieldset>
<br>
<input id="btnr" type="reset">
<input id="btns" type="submit" name="insert"value="Submit">
</form>
</div>
</div>
<!-- Footer -->
<?php include('footer.php'); ?>