forked from ISM6225/Assignment_LookAndFeel
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathForm.html
More file actions
84 lines (78 loc) · 2.49 KB
/
Form.html
File metadata and controls
84 lines (78 loc) · 2.49 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
<!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">Add Bike Model</h2>
<div class="signform-group">
<label for="username">Name</label>
<input type="text" id="username" name="name" required />
</div>
<div class="signform-group">
<label for="email">Bike</label>
<input type="text" id="quantity" name="quantity" required />
</div>
<div class="signform-group">
<label for="password">Model</label>
<input type="text" id="location" name="location" required />
</div>
<div class="signform-group">
<label for="password">Engine</label>
<input type="text" id="location" name="location" required />
</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"
>
Create
</button>
</div>
</div>
</div>
</main>
<footer>
<p>© 2023 URBAN BIKE WORKS</p>
</footer>
</body>
</html>