generated from comp1800/web_template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
76 lines (62 loc) · 3.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Signup to Smart Eye Recycling!</title>
<meta name="comp1800 template" content="My 1800 App">
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap Library CSS CDN go here -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<!-- Bootstrap Library JS CDN go here -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<!-- Other libraries go here -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- firebaseAPI -->
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/ui/4.8.1/firebase-ui-auth.js"></script>
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/4.8.1/firebase-ui-auth.css" />
<!-- <script src="\scripts\firebaseAPI_smart_eye.js"></script> -->
<!-- Google Icons (Material Design)-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- import google icons library -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<!-- Link to styles of your own -->
<link rel="stylesheet" href="../styles/stylesheet.css" type="text/css">
<style>
#backButton {
color: rgb(25, 135, 84)
}
</style>
</head>
<body>
<!-- nav bar -->
<nav id="navbarPlaceholder"></nav>
<div class="container col-xxl-8 px-4 py-5">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="col-10 col-sm-8 col-lg-6">
<img src="../images/landing.jpg" class="d-block mx-lg-auto img-fluid" alt="3 colourful bins" width="700"
height="500" loading="lazy">
</div>
<div class="col-lg-6">
<h1 class="display-5 fw-bold lh-1 mb-3">Smart Eye Recycling</h1>
<p class="lead">Our team, including Charlie Ho, Parteek Grewal, and Xinli
Wang, creates a mobile web application which is designed to assist and simplify the recycling process for
residents in BC, Canada through the use of barcode scanning.</p>
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
<a type="button" class="btn btn-success btn-lg px-4 me-md-2" href="./pages/login.html">Sign Up/ Login</a>
</div>
</div>
</div>
</div>
<!-- Link to scripts of your own -->
<script src="../scripts/firebaseAPI_smart_eye.js"></script>
<script src="../scripts/skeleton.js"></script>
</body>
</html>