-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcarinfo.html
149 lines (122 loc) · 6.77 KB
/
carinfo.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="CSS/style.css">
<title>EV Navigator</title>
</head>
<body>
<nav class="navbar navbar-dark bg-dark">
<div class="container-fluid container">
<sapn class="navbar-brand" href="#">
EV Navigator
</span>
</div>
</nav>
<section class="container">
<div class="range-form">
<h3><strong>Data required for range prediction</strong></h3>
<form>
<div class="row mb-3">
<label class="col-sm-10 col-form-label">Total battery capacity</label>
<div class="input-group">
<div class="input-group-text">kWh</div>
<input type="number" class="form-control" , id="capacity">
</div>
</div>
<div class="row mb-3">
<label class="col-sm-10 col-form-label">Type of roads in the route: </label>
<div style="padding-left:12px;">
<input class="form-check-input" type="checkbox" name="route" value="City" id="r1">
<label class="form-check-label" style="margin-left: 10px;">
City Roads
</label>
</div>
<div style="padding-left:12px;">
<input class="form-check-input" type="checkbox" name="route" value="Highway" id="r2">
<label class="form-check-label" style="margin-left: 10px;">
Highway
</label>
</div>
<div style="padding-left:12px;">
<input class="form-check-input" type="checkbox" name="route" value="Country" id="r3">
<label class="form-check-label" style="margin-left: 10px;">
Country Roads
</label>
</div>
</div>
<div class="row mb-3">
<label class="col-sm-10 col-form-label">Type of load: </label>
<div style="padding-left:12px;">
<input class="form-check-input" type="radio" name="load" id="l1" value="A/C">
<label class="form-check-label" style="margin-left: 10px;">
A/C
</label>
</div>
<div style="padding-left:12px;">
<input class="form-check-input" type="radio" name="load" id="l2" value="Heater">
<label class="form-check-label" style="margin-left: 10px;">
Heater
</label>
</div>
<div style="padding-left:12px;">
<input class="form-check-input" type="radio" name="load" id="l3" value="None" checked>
<label class="form-check-label" style="margin-left: 10px;">
None
</label>
</div>
</div>
<div class="row mb-3">
<label class="col-sm-10 col-form-label">Type of tires used for the EV: </label>
<div style="padding-left:12px;">
<input class="form-check-input" type="radio" name="tyre" id="t2" value="Summer" checked>
<label class="form-check-label" style="margin-left: 10px;">
Summer tires
</label>
</div>
<div style="padding-left:12px;">
<input class="form-check-input" type="radio" name="tyre" id="t3" value="Winter">
<label class="form-check-label" style="margin-left: 10px;">
Winter tires
</label>
</div>
</div>
<div style="display: flex; justify-content: space-between;">
<a href="index.html">
<button type="button" class="btn btn-outline-dark" id="prev-button">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor"
class="bi bi-arrow-left-circle" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-4.5-.5a.5.5 0 0 1 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5z" />
</svg>
Previous
</button>
</a>
<a href="navigation.html">
<button type="button" class="btn btn-outline-dark" id="next-button">
Next
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="currentColor"
class="bi bi-arrow-right-circle" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM4.5 7.5a.5.5 0 0 0 0 1h5.793l-2.147 2.146a.5.5 0 0 0 .708.708l3-3a.5.5 0 0 0 0-.708l-3-3a.5.5 0 1 0-.708.708L10.293 7.5H4.5z" />
</svg>
</button>
</a>
</div>
</form>
</div>
</section>
<!-- Loading Scripts -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/danfojs@0.2.7/lib/bundle.min.js"></script>
<script src="https://cdn.plot.ly/plotly-2.2.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@2.0.0/dist/tf.min.js"></script>
<script src="JS/script.js"></script>
</body>
</html>