/var/www/hkosl.com/shipvago/view/login.php


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
<!DOCTYPE html>

<html lang="en-HK" prefix="og: http://ogp.me/ns#">



<head>

    <title>Shipvago - Login</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">Login</h1>

                        <a href="#"><i class="fab fa-google-plus-g"></i> Goolge Login</a> <span
                            class="mr-4 ml-4">|</span>
                        <a href="#"><i class="fab fa-facebook-f"></i> Facebook Login</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">

                        </div>
                        <div class="form-group">
                            <label for="exampleInputPassword1">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">
                                    Keep me logged in</label>
                            </div>
                            <a href="#" class="blueFont ml-auto">Forgot Password ?</a>

                        </div>

                        <button type="submit" class="btn btn-primary loginBtn">Login</button>
                        <p class="mt-4">Have an account? <a href="register.php" class="blueFont">Sign Up</a></p>
                    </form>
                </div>



            </div>



        </div>

    </section>











    <!-- end #section -->





    <!-- footer -->

    <?php include 'inc/footer.php';?>







</body>







</html>