-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
98 lines (89 loc) · 3.44 KB
/
signup.html
File metadata and controls
98 lines (89 loc) · 3.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SendIT | Courier Services | Sign up page</title>
<meta charset="utf-8" />
<!-- Set the viewport width to device width for mobile -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Included CSS Files -->
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/pagesStyle.css" type="text/css">
</head>
<body>
<header>
<nav class="sit-nav">
<ul class="sub-nav">
<li><a href="signin.html" >Sign In</a></li>
<li class="active"><a href="signup.html" >Sign Up</a></li>
<li>
<form method="POST" action="" class="search" id="search">
<input type="text" placeholder="Search..." />
<button type="submit" class="searchBtn" >Search
</button>
</form>
</li>
</ul>
</nav>
<a href="index.html" class="header-brand"><img src="images/sendItLogo.png" alt="SendIT"></a>
<nav class="sit-nav2">
<ul class="main-nav">
<li class="active"><a href="index.html" >HOME</a></li>
<li><a href="parcels.html">PARCELS</a></li>
<li><a href="index.html#t-number">TRACKING</a></li>
<li><a href="contactus.html">CONTACT</a></li>
</ul>
</nav>
</header>
<main id ="content">
<section class="index-signup-view">
<div class="signup-view">
<h3>Register</h3>
<form method="POST" action="#" onsubmit="return validateSignupForm()">
<p>First Name</p>
<input id="fname" type="text" name="" placeholder="Enter First Name">
<p>Last Name</p>
<input id="lname" type="text" name="" placeholder="Enter Last Name">
<p>Phone Number</p>
<input id="pnumber" type="text" name="" placeholder="Enter Phone Number">
<p>Email</p>
<input id="email" type="email" name="" placeholder="Enter Email">
<p>Username</p>
<input id="username" type="text" name="" placeholder="Enter Username">
<p>Password</p>
<input id="password" type="password" name="" placeholder="Enter Password">
<p>Retype Password</p>
<input id="repassword" type="password" name="" placeholder="Retype Password"><br>
<input id="submit" type="submit" name="" value="Sign up">
<a href="signin.html" >Sign in</a>
</form>
</div>
</section>
</main>
<footer>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="parcels.html">PARCELS</a></li>
<li><a href="index.html#t-number">TRACKING</a></li>
<li><a href="contactus.html">CONTACT</a></li>
</ul>
<div class="footer-sm">
<a href="#">
<img src="images/youtube-logo.png" alt="youtube icon">
</a>
<a href="#">
<img src="images/facebook-logo.png" alt="facebook icon">
</a>
<a href="#">
<img src="images/twitter-logo.png" alt="twitter icon">
</a>
</div>
<section class="footer-bottom">
<div>
<p>Copyright © SendIT 2018</p>
</div>
</section>
</footer>
<!-- Scripts -->
<script src="scripts/validators.js"></script>
</body>
</html>