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
|
<!DOCTYPE html>
<html lang="en-HK" prefix="og: http://ogp.me/ns#">
<head>
<title>Shipvago - Register</title>
<meta name="description" content="Shipvago is founded by a group of logistics expert with years of experience in logistics industry. We try to think from the industry perspective and how to address to the painpoints via technology.">
<!-- css -->
<?php include 'inc/headlinks.php';?>
<!-- js -->
<?php include 'inc/link-js.php';?>
</head>
<body>
<!-- header -->
<?php include 'inc/navbar.php';?>
<!-- end of header-->
<section class="subWrapper" style="background-image:url(../assets/images/loginBg.jpg);">
<div class="container mt-4">
<div class="row justify-content-center m-0">
<div class="col-lg-6 boxWrap"> <form> <h1 class="mb-4">Sign Up</h1>
<a href="#"><i class="fab fa-google-plus-g"></i> Goolge Register</a> <span class="mr-4 ml-4">|</span> <a href="#"><i class="fab fa-facebook-f"></i> Facebook Register</a>
<hr class="blueLine">
<div class="form-group"> <label for="exampleInputEmail1">Email address</label> <input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email"> <small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small> </div> <div class="form-group"> <label for="exampleInputPassword1">Password</label> <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password"> </div> <div class="form-group"> <label for="exampleInputPassword1">Confirm Password</label> <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password"> </div> <div class="d-flex mb-4"> <div class="form-check"> <input type="checkbox" class="form-check-input" id="exampleCheck1"> <label class="form-check-label" for="exampleCheck1"> I accept the Freightos <a href="term.php" class="blueFont">terms</a> and <a href="register.php" class="blueFont">conditions</a></label> </div>
</div>
<button type="submit" class="btn btn-primary loginBtn">Sign Up</button> <p class="mt-4">Have an account? <a href="login.php" class="blueFont">Log In </a></p> </form> </div>
</div>
</div>
</section>
<!-- end #section -->
<!-- footer -->
<?php include 'inc/footer.php';?>
</body>
</html>
|