-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
435 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<html> | ||
<head> | ||
<style type="text/css"> | ||
.collapsible { | ||
background-color: white; | ||
color: black; | ||
cursor: pointer; | ||
padding: 18px; | ||
width: 100%; | ||
border: 1px solid black; | ||
text-align: left; | ||
outline: none; | ||
font-size: 15px; | ||
} | ||
.active, .collapsible:hover { | ||
background-color: palevioletred; | ||
} | ||
.content { | ||
padding: 0 18px; | ||
display: none; | ||
overflow: hidden; | ||
background-color: #f1f1f1; | ||
width:100%; | ||
} | ||
.img1 { | ||
width:500px; | ||
height:300px; | ||
} | ||
|
||
figcaption{ | ||
font-weight: bold; | ||
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; | ||
font-size: medium; | ||
} | ||
</style> | ||
|
||
</head> | ||
<body style="align:left;"> | ||
<h1 align="center">Your Documents</h1> | ||
<button type="button" class="collapsible"> | ||
<h3>Click to view your documents</h3> | ||
</button> | ||
<div class="content"> | ||
<div align="center"> | ||
<figure> | ||
<img class="img1" src="licence.jpg" /> | ||
<figcaption>Driving License</figcaption><br/> <br/> | ||
<img class="img1" src="rc.jpg"/> | ||
<figcaption>Vehicle Registration Certificate</figcaption><br/><br/> | ||
<img class="img1" src="PUC.jpg"/> | ||
<figcaption>Vehicle Pollution Certificate</figcaption><br/><br/> | ||
<img src="insurance.png"/> | ||
<figcaption>Vehicle insurance</figcaption><br/><br/> | ||
</figure> | ||
</div> | ||
</div> | ||
|
||
<h1 align="center">Your Vehicle Details</h1> | ||
<button type="button" class="collapsible"> | ||
<h3>Click to view your vehicle details.</h3> | ||
</button> | ||
<div class="content"> | ||
<div align="center"> | ||
<table border="1"> | ||
<tr> | ||
<th>Vehicle Class</th> | ||
<th>Vehicle Type</th> | ||
<th>Model</th> | ||
<th>Action</th> | ||
</tr> | ||
<tr> | ||
<td>Two Wheeler</td> | ||
<td>Scooter</td> | ||
<td>TVS Jupiter ZX 2021</td> | ||
<td><a href="Status.html"><button id="btn1">Check Status</button></a></td> | ||
</tr> | ||
<tr> | ||
<td>Four Wheeler</td> | ||
<td>Car</td> | ||
<td>Lamborghini Murcielago LP640</td> | ||
<td><a href="Status.html"><button id="btn1">Check Status</button></a></td> | ||
</tr> | ||
</table> | ||
</div> | ||
</div> | ||
</body> | ||
<script> | ||
var coll = document.getElementsByClassName("collapsible"); | ||
var count; | ||
|
||
for (count = 0; count < coll.length; count++) { | ||
coll[count].addEventListener("click", function() { | ||
//alert("hello"); | ||
this.classList.toggle("active"); | ||
var content = this.nextElementSibling; | ||
if (content.style.display === "block") { | ||
content.style.display = "none"; | ||
} | ||
else { | ||
content.style.display = "block"; | ||
} | ||
|
||
}); | ||
} | ||
|
||
</script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<html> | ||
<head> | ||
<style> | ||
header { | ||
background-color: #01112b; | ||
padding: 30px; | ||
text-align: center; | ||
color: palevioletred; | ||
font-family: "Comic Sans MS", Times, serif; | ||
} | ||
a:hover | ||
{ | ||
color: palevioletred; | ||
} | ||
td { | ||
background-color: #01112b; | ||
padding: 30px; | ||
|
||
color: palevioletred; | ||
font-family: "Comic Sans MS", Times, serif; | ||
} | ||
img | ||
{ | ||
width: 200px; | ||
height: 200px;; | ||
} | ||
|
||
</style> | ||
|
||
</head> | ||
<body link="white" alink="palevioletred" vlink="white"> | ||
|
||
<header> | ||
<table width="100%"> | ||
<tr> | ||
<td><a href="home.html"><img align="left" src="BB.png"/></a></td> | ||
<td><h1>Only Place for All your Transport Needs</h1></td> | ||
<td><h4 align="right">Driving Licence No.: MP13N-2012-0124338</h4><div align="right"><a href="#">LogOut</a> </div></td> | ||
</tr> | ||
</table> | ||
</header> | ||
<iframe src="Status1.html" name="iframe_a" width="100%" height="100%"></iframe> | ||
<!-- <iframe src = "Create.html" name="iframe_b" width="24%" height=100%></iframe> --> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.