-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.html
More file actions
119 lines (98 loc) · 5.22 KB
/
search.html
File metadata and controls
119 lines (98 loc) · 5.22 KB
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
<!DOCTYPE html>
<html>
<head>
<!--Title-->
<meta charset="utf-8">
<meta name="viewport" content="width = device-width, intial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<!--Title-->
<title>Registered</title>
<!--Favicon-->
<link href="assets/image/logo.png" rel="icon">
<!--Bootstrap Css-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<!--Css file-->
<link rel="stylesheet" href="assets/css/style.css">
<!-- ===== BOX ICONS ===== -->
<link href='https://cdn.jsdelivr.net/npm/boxicons@2.0.5/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<!-- Nav bar-->
<!--Header nav-->
<nav class="navbar fixed-top navbar-dark" id="navv">
<div class="container-fluid">
<a class="navbar-brand" href="#">Do you want to go back to main page?</a>
<a class="nav-link active" href="index.html">Take me there</a>
</div>
</nav>
<!--Footer nav-->
<nav class="navbar fixed-bottom navbar-dark" id="navv">
<div class="container-fluid">
<a class="navbar-brand" href="#">Do you want to help other owners?</a>
<a class="nav-link active" href="helper.html">Take me there</a>
</div>
</nav>
<!-- Nav bar end-->
<!--Response-->
<div class="container" id="response">
<div class="row" >
<div class="col-md-2"></div>
<div class="col-md-8"><h1>Your Response has been recorded</h1></div>
<div class="col-md-2"></div>
</div>
<div class="row" >
<div class="col-sm-1"></div>
<div class="col-12 col-sm-8"><img id="alter" src="assets/image/response.jpeg"></div>
<div class="col-sm-2"></div>
<div class="row" >
<div class="col-sm-1"></div>
<div class="col-12 col-sm-10"><h1>We will send you a mail, once a car is found!</h1></div>
<div class="col-sm-1"></div>
</div>
</div>
</div>
<!--Contact session-->
<div id="contact" >
<hr>
<div class="container">
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-8">
<h1>For any queries contact</h1>
</div>
<div class="col-md-1"></div>
</div>
<div class="row" style="margin-top: 100px; margin-bottom: 50px; background-color: black; color: white;">
<div class="col-md-4"></div>
<div class="col-md-4">
<h1>Developers</h1>
</div>
<div class="col-md-4"></div>
</div>
<div class="row">
<div class="col-md-4 col-12" style="margin-bottom: 40px;">
<h3>Kumaran KM</h3>
<h6>Mail Id: kumaranmohan1106@gmail.com</h6>
</div>
<div class="col-md-4 col-12" style="margin-bottom: 40px;">
<h3>Naveen SR</h3>
<h6>Mail Id: naveenstudy2000sr@gmail.com</h6>
</div>
<div class="col-md-4 col-12" style="margin-bottom: 40px;">
<h3>Pradeish</h3>
<h6>Mail Id: pradeish2001@gmail.com</h6>
</div>
</div>
</div>
</div>
<!--Script file-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.1/dist/umd/popper.min.js" integrity="sha384-SR1sx49pcuLnqZUnnPwx6FCym0wLsk5JZuNx2bPPENzswTNFaQU1RDvt3wT4gWFG" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.min.js" integrity="sha384-j0CNLUeiqtyaRmlzUHCPZ+Gy5fQu0dQ6eZ/xAww941Ai1SxSY+0EQqNXNE6DZiVc" crossorigin="anonymous"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="assets/js/index.js"></script>
<script src="assets/js/index2.js"></script>
</body>
</html>