forked from ISM6225/Assignment_LookAndFeel
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathViewSO.html
More file actions
138 lines (132 loc) · 3.77 KB
/
ViewSO.html
File metadata and controls
138 lines (132 loc) · 3.77 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!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>
<div class="sign-container">
<div class="signform">
<h2 class="signform-heading">Service Order Details</h2>
<div class="signform-group">
<label for="username">CustomerName</label>
<input
type="text"
id="username"
name="name"
required
value="John"
/>
</div>
<div class="signform-group">
<label for="email">Service</label>
<input
type="text"
id="quantity"
name="quantity"
required
value="Oil Change"
/>
</div>
<div class="signform-group">
<label for="password">Bike</label>
<input
type="text"
id="location"
name="location"
required
value="Honda Activa"
/>
</div>
<div class="signform-group">
<label for="password">VHR Number</label>
<input
type="text"
id="location"
name="location"
required
value="KVT3670"
/>
</div>
<div class="signform-group">
<label for="password">Received Date</label>
<input
type="text"
id="location"
name="location"
required
value="12/12/12"
/>
</div>
<div class="signform-group">
<label for="password">Delivery Date</label>
<input
type="text"
id="location"
name="location"
required
value="13/12/12"
/>
</div>
<div class="signform-group">
<label for="password">Price</label>
<input
type="text"
id="location"
name="location"
required
value="$200"
/>
</div>
<div class="popup">
<h2>Request submitted successfully!</h2>
<button id="close-popup" class="signform-submit-btn-green">
Ok
</button>
</div>
<div class="signform-btn">
<button class="signform-submit-btn">
<a href="Dashboard.html">Cancel</a>
</button>
<button
class="signform-submit-btn-green"
id="signform-submit-btn-green"
type="submit"
>
Update
</button>
</div>
</div>
</div>
</main>
<footer>
<p>© 2023 URBAN BIKE WORKS</p>
</footer>
</body>
</html>