-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
72 lines (66 loc) · 1.77 KB
/
signup.html
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
<!DOCTYPE html>
<html>
<head>
<title>ReserveYourDesk|SignUp</title>
<style>
div.a {
text-align: right;
}
<base href="C:/Users/HP/Desktop/reserveyourdesk.html">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #04AA6D;
}
.topnav a {
float: right;
color: #f2f2f2;
text-align: center;
padding: 10px 10px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #000033;
;
}
.topnav a.active {
background-color: #04AA6D;
color: white;
}
</style>
</head>
<body>
<img src="C:\Users\HP\Downloads\Frame 33 (2).png" alt="reserveyourdesk" usemap="#reserveyourdesk">
<map name="reserveyourdesk">
<area shape="rect" coords="1,1,300,45" href="C:/Users/HP/Desktop/reserveyourdesk.html" alt="reserveyourdesk">
</map>
<div class="topnav">
<h2>
<a href="C:/Users/HP/Desktop/faq.html">Faq</a>
<a href="C:/Users/HP/Desktop/contact.html">Contact</a>
<a href="C:/Users/HP/Desktop/offer.html">Offers</a>
<a href="C:/Users/HP/Desktop/signup.html">SignUp</a>
<a href="C:/Users/HP/Desktop/login.html">Login</a>
<a href="C:/Users/HP/Desktop/reserveyourdesk.html">Home</a>
</h2>
</div>
<center>
<br><br><br><br>
<h2>COMPANY SIGN UP</h2>
<form>
<label for="companyname">Company name:</label>
<input type="text" id="companyname" name="companyname" value=""><br><br>
<label for="email">Enter your email:</label>
<input type="email" id="email" name="email"><br><br>
<label for="pwd">Create Password:</label>
<input type="password" id="pwd" name="pwd"><br><br>
<input type="submit" value="Submit"><br>
</form> </center>
</body>
</html>