-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (88 loc) · 3.91 KB
/
index.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html lang="en">
<head>
<title>Welcome to WeGo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Remote Style Sheets -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<!-- Local CSS -->
<link href="common/css/common.css" rel="stylesheet"/>
<link href="css/index.css" rel="stylesheet"/>
<!-- Remote Javascript -->
<script src="https://cdn.jsdelivr.net/npm/js-cookie@rc/dist/js.cookie.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Local Javascript -->
<script src="common/js/fetchLoggedInUser.js"></script>
<script src="common/js/logoutUser.js"></script>
<script src="common/js/hashUtils.js"></script>
<script src="common/js/common.js"></script>
<script src="js/index.js"></script>
</head>
<body class="m-0">
<!-- Navigation Bar -->
<header class="p-3 fixed-top bg-white">
<div id="mainAlert" class="alert alert-danger d-none" role="alert">
An error has occurred.
</div>
<div class="container-fluid container-xl d-flex align-items-center justify-content-between">
<a class="navbar-brand-text text-primary text-decoration-none" href="index.html">WeGo</a>
<nav id="navbar" class="navbar">
<ul>
<li class="nav-item"><a class="nav-link text-secondary px-3" aria-current="page" href="/">Home</a></li>
<li id="usernameList" class="nav-item dropdown d-none logged-in-user">
<a class="nav-link dropdown-toggle px-3 py-2 text-dark" href="#" id="usernameLabel" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Username
</a>
<div class="dropdown-menu" aria-labelledby="usernameLabel">
<a class="pe-4 dropdown-item" href="#">Account</a>
<hr class="pe-4 dropdown-divider">
<a id="logoutButton" class="pe-4 dropdown-item" href="#">Log out</a>
</div>
</li>
<li id="dashboardList" class="nav-item d-none logged-in-user"><a id="dashboardLink" class="nav-item mx-3 btn bg-secondary px-3 py-2 text-light">Dashboard</a></li>
<li id="registerList" class="nav-item" >
<hr class="mx-4 p-0 m-2"/>
<a class="nav-link text-secondary px-3" href="register.html">Register</a>
</li>
<li id="loginList" class="nav-item" ><a class="nav-item mx-3 btn color-primary px-3 py-2 text-light" href="login.html">Log in</a></li>
</ul>
<i id="mobile-nav-toggle" class="bi text-secondary mobile-nav-toggle bi-list"></i>
</nav>
</div>
</header>
<!-- Hero Section -->
<section id="hero-section" class="hero d-flex justify-content-center align-items-center min-vh-100 nav-height-padding">
<div class="container">
<div class="row">
<div class="col-lg-6 d-flex flex-column justify-content-center">
<h1 class="text-secondary">
We offer modern solutions for your needs.
</h1>
<h2>
We utilize autonomous vehicles to transport services.
</h2>
<div class="mt-4 text-lg-start">
<a id="btnHeroPrimary" href="register.html" class="btn color-primary mt-3">
<span>Register Now</span>
<i class="bi bi-arrow-right"></i>
</a>
</div>
</div>
<div class="col-lg-6 d-flex flex-column justify-content-center">
<img src="assets/images/wego-hero-vehicle.svg" class="img-fluid" alt="wego-vehicle">
</div>
</div>
</div>
</section>
<!-- Main Content -->
<main>
</main>
<!--Bootstrap JS files-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"></script>
</body>
</html>