forked from ISM6225/Assignment_LookAndFeel
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathServices.html
More file actions
88 lines (84 loc) · 2.42 KB
/
Services.html
File metadata and controls
88 lines (84 loc) · 2.42 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
<!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">Services</h2>
<div class="container">
<table>
<tr>
<th>Name</th>
<th>Bike</th>
<th>Price</th>
<th>Edit</th>
</tr>
<tr>
<td>Oil Change</td>
<td>Honda Activa</td>
<td>$100</td>
<td>
<button onclick="update()" class="btnclr">Edit</button>
<button href="UpdateForm.html" class="btnclr">Remove</button>
</td>
</tr>
<tr>
<td>Oil Change</td>
<td>Honda Activa</td>
<td>$100</td>
<td>
<button onclick="update()" class="btnclr">Edit</button>
<button href="UpdateForm.html" class="btnclr">Remove</button>
</td>
</tr>
<tr>
<td>Oil Change</td>
<td>Honda Activa</td>
<td>$100</td>
<td>
<button onclick="update()" class="btnclr">Edit</button>
<button href="UpdateForm.html" class="btnclr">Remove</button>
</td>
</tr>
<tr class="no-hover">
<td>
<a class="search-btn btnclr" href="AddService.html">ADD DATA</a>
</td>
</tr>
</table>
</div>
</main>
</body>
</html>
<script>
function update() {
window.location.href = "./UpdateForm.html";
}
</script>