-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (78 loc) · 4.66 KB
/
index.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Material Design for Bootstrap fonts and icons -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Material+Icons">
<!-- Material Design for Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap-material-design.min.css" integrity="sha384-R80DC0KVBO4GSTw+wZ5x2zn2pu4POSErBkf8/fSFhPXHxvHJydT0CSgAP2Yo2r4I" crossorigin="anonymous">
<link rel="stylesheet" href="css/custom.css">
<title>محاسبه آنلاین قیمت بیمه خودرو</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col col-md-8 mr-md-auto ml-md-auto" >
<div id="content">
<header>
<h1 class="text-center">محاسبه آنلاین قیمت بیمه خودرو</h1>
</header>
<div class="row content-form">
<div class="col col-md-10 mr-md-auto ml-md-auto">
<form action="#" id="request-quote">
<div class="form-group">
<label class="full-width" for="make">مدل خودرو:</label>
<select class="form-control" id="make">
<option value="">- انتخاب -</option>
<option value="1">پراید</option>
<option value="2">اپتیما</option>
<option value="3">پورشه</option>
</select>
</div>
<div class="form-group">
<label class="full-width" for="year">سال ساخت:</label>
<select class="form-control" id="year"></select>
</div>
<fieldset class="form-group">
<div class="row">
<legend class="col-form-legend full-width col-12">نوع بیمه</legend>
<div dir="rtl" class="col-12 full-width">
<div class="form-check padding-right">
<label class="form-check-label">
ساده - شخص ثالث
</label>
<input class="form-check-input" type="radio" name="level" value="basic" checked>
</div>
<div class="form-check padding-right">
<label class="form-check-label">
کامل - شخص ثالث با بیمه بدنه
</label>
<input class="form-check-input" type="radio" name="level" value="complete">
</div>
</div>
</div>
</fieldset>
<div id="loading">
<img src="img/spinner.gif">
</div>
<div id="result"></div>
<div class="form-group">
<button type="submit" class="btn btn-raised btn-primary">محاسبه قیمت
</button>
</div>
</form>
</div>
</div>
</div> <!--#content-->
</div>
</div>
</div>
<!-- <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://unpkg.com/popper.js@1.12.6/dist/umd/popper.js" integrity="sha384-fA23ZRQ3G/J53mElWqVJEGJzU0sTs+SvzG8fXVWP+kJQ1lwFAOkcUOysnlKJC33U" crossorigin="anonymous"></script>
<script src="js/bootstrap-material-design.js" integrity="sha384-3xciOSDAlaXneEmyOo0ME/2grfpqzhhTcM4cE32Ce9+8DW/04AGoTACzQpphYGYe" crossorigin="anonymous"></script> -->
<!-- <script>$(document).ready(function() { $('body').bootstrapMaterialDesign(); });</script> -->
<script src="js/app.js"></script>
</body>
</html>