You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
978 B
42 lines
978 B
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>View Train - InfoTren</title> |
|
|
|
<link rel="stylesheet" href="/base.css"> |
|
<link rel="stylesheet" href="view-train.css"> |
|
|
|
<script src="/back.js"></script> |
|
<script src="view-train.js"></script> |
|
</head> |
|
<body> |
|
<h1>Train Info</h1> |
|
<p class="sec" id="company"></p> |
|
|
|
<div class="content" tabindex="0"> |
|
<div id="route"> |
|
<h4>Route</h4> |
|
<p class="thi">From</p> |
|
<p class="pri" id="route-from"></p> |
|
<p class="thi">To</p> |
|
<p class="pri" id="route-to"></p> |
|
</div> |
|
<div id="status" class="hidden"> |
|
<h4>Status</h4> |
|
<p class="pri" id="status-delay"></p> |
|
<p class="sec" id="status-location"></p> |
|
</div> |
|
<div id="stations"> |
|
<h4>Stations</h4> |
|
</div> |
|
</div> |
|
|
|
<footer> |
|
<div class="csk"></div> |
|
<div class="rsk">Refresh</div> |
|
</footer> |
|
</body> |
|
</html> |