forked from ISM6225/Assignment_LookAndFeel
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAllSos.html
More file actions
81 lines (70 loc) · 1.8 KB
/
AllSos.html
File metadata and controls
81 lines (70 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en" xml:lang="en">
<head>
<title> URBAN BIKE WORKS </title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<nav>
<a href="Index.html">
<h1 class="logo-label white-font"> URBAN BIKE WORKS </h1>
</a>
<ul>
<li>
<a href="Index.html" class="white-font"><b>HOME</b></a>
</li>
<li>
<a href="Services.html" class="white-font"><b>SERVICES</b></a>
</li>
<li>
<a href="Dashboard.html" class="white-font"><b>DASHBOARD</b></a>
</li>
<li>
<a href="Bikes.html" class="white-font"><b>BIKES</b></a>
</li>
<li>
<a href="Aboutus.html" class="white-font"><b>ABOUT US</b></a>
</li>
</ul>
</nav>
</header>
<!-- Main content that should be edited -->
<main>
<h2 style="text-align: center">Related Service Orders</h2>
<div class="container">
<table>
<tr>
<th>ID</th>
<th>Customer</th>
<th>Service</th>
<th>VHR number</th>
</tr>
<tr>
<td>1</td>
<td>John</td>
<td>Oil Change</td>
<td>KVT3567</td>
</tr
<tr>
<td>1</td>
<td>John</td>
<td>Oil Change</td>
<td>KVT3567</td>
</tr>
<tr>
<td>1</td>
<td>John</td>
<td>Oil Change</td>
<td>KVT3567</td>
</tr>
</table>
</div>
</main>
</body>
</html>
<script>
function viewSO() {
window.location.href = "./ViewSO.html";
}
</script>