-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
13c158b
commit 49c3512
Showing
90 changed files
with
17,430 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
var express = require("express"); | ||
var app = express(); | ||
|
||
const PORT = process.env.PORT || 3000; | ||
//assets = path.join(__dirname, 'views', 'assets'); | ||
|
||
app.use(express.static("views")); | ||
|
||
app.get("/", function(req, res) { | ||
res.render("index.html"); | ||
}) | ||
|
||
app.listen(PORT, () => | ||
console.log(`Listening on port ${PORT}!`), | ||
) | ||
|
||
// app.listen(8002, function() { | ||
// console.log("http://localhost:8002"); | ||
// }); |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "Test", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "app.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"start": "node app.js" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"dependencies": { | ||
"@googlemaps/google-maps-services-js": "^3.1.6", | ||
"chartjs": "^0.3.24", | ||
"chartjs-plugin-datasource": "^0.1.0", | ||
"ejs": "^3.1.5", | ||
"express": "^4.17.1", | ||
"git": "^0.1.5", | ||
"node": "^14.11.0", | ||
"nodemon": "^2.0.4" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"> | ||
<title>About Us - Blindness in Malaysia</title> | ||
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,400i,700,700i,600,600i"> | ||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.12.0/css/all.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.10.0/baguetteBox.min.css"> | ||
<link rel="stylesheet" href="assets/css/smoothproducts.css"> | ||
</head> | ||
<body id="page-top"> | ||
<nav class="navbar navbar-light navbar-expand-lg fixed-top bg-white clean-navbar"> | ||
<div class="container"> | ||
<i class="fas fa-hand-holding-heart"></i><a class="navbar-brand logo" href="index.html">Blindness in Malaysia</a><button data-toggle="collapse" class="navbar-toggler" data-target="#navcol-1"><span class="sr-only">Toggle navigation</span><span class="navbar-toggler-icon"></span></button> | ||
<div class="collapse navbar-collapse" id="navcol-1"> | ||
<ul class="nav navbar-nav ml-auto"> | ||
<li class="nav-item" role="presentation"><a class="nav-link" href="index.html">Home</a></li> | ||
<li class="nav-item dropdown"> | ||
<a class="dropdown-toggle nav-link" data-toggle="dropdown" aria-expanded="false" href="#">Statistics</a> | ||
<div class="dropdown-menu" role="menu"> | ||
<a class="dropdown-item" role="presentation" href="stats-handicaps-malaysia.html">Handicaps in Malaysia</a> | ||
<a class="dropdown-item" role="presentation" href="stats-handicaps-schools-compare.html">Special Education Schools<br></a> | ||
<a class="dropdown-item" role="presentation"href="stats-handicaps-gmap.html">Schools, Centres, Workshop<br></a> | ||
</div> | ||
</li> | ||
<li class="nav-item dropdown"> | ||
<a class="dropdown-toggle nav-link" data-toggle="dropdown" aria-expanded="false" href="#">Information</a> | ||
<div class="dropdown-menu" role="menu"> | ||
<a class="dropdown-item" role="presentation" href="info-page1.html">Types of Vision</a> | ||
<a class="dropdown-item" role="presentation" href="info-page2.html">Symptoms & Causes<br></a> | ||
<a class="dropdown-item" role="presentation"href="info-page3.html">Diagnosis & Treatment<br></a> | ||
<a class="dropdown-item" role="presentation" href="info-page4.html">Visual Impairment (MY)<br></a> | ||
</div> | ||
</li> | ||
<li class="nav-item" role="presentation"><a class="nav-link active" href="about-us.html">About Us</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
<main class="page"> | ||
<section class="clean-block about-us"> | ||
<div class="container"> | ||
<div class="block-heading"> | ||
<img class="rounded img-fluid figure-img" src="assets/img/teamlogo.png"> | ||
<h2 class="text-info" style="font-size: 64px;">Group 10</h2> | ||
<p>About Us</p> | ||
</div> | ||
<div class="row justify-content-center" style="padding-bottom: 20px;"> | ||
<div class="col-sm-6 col-lg-4"> | ||
<div class="card clean-card text-center"> | ||
<img class="card-img-top w-100 d-block" src="assets/img/darel.jpg"> | ||
<div class="card-body info"> | ||
<h4 class="card-title">Darel Low</h4> | ||
<h5 class="card-subtitle">Role: Project Leader<br></h5> | ||
<p class="card-text">Responsible for keeping track of the project timeline and monitor the task progression of team members <br></p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-sm-6 col-lg-4"> | ||
<div class="card clean-card text-center"> | ||
<img class="card-img-top w-100 d-block" src="assets/img/debin.jpg"> | ||
<div class="card-body info"> | ||
<h4 class="card-title">Lee De Bin</h4> | ||
<h5 class="card-subtitle">Role: Primary Backend Programmer <br></h5> | ||
<p class="card-text">Responsible to develop and follow the project technical requirements such as transforming datasets.<br></p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row justify-content-center"> | ||
<div class="col-sm-6 col-lg-4"> | ||
<div class="card clean-card text-center"> | ||
<img class="card-img-top w-100 d-block" src="assets/img/wei%20ran.png"> | ||
<div class="card-body info"> | ||
<h4 class="card-title">Chan Wei Ran<br></h4> | ||
<h5 class="card-subtitle">Role: Backend Programmer<br></h5> | ||
<p class="card-text">Responsible for assisting the primary programmer & provide a second solution or perspective during the development.<br></p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-sm-6 col-lg-4"> | ||
<div class="card clean-card text-center"> | ||
<img class="card-img-top w-100 d-block" src="assets/img/alan.jpg"> | ||
<div class="card-body info"> | ||
<h4 class="card-title">Lee Hao Xi<br></h4> | ||
<h5 class="card-subtitle">Role: Frontend Programmer & Tester<br></h5> | ||
<p class="card-text">Responsible for designing and structuring web page layouts, graphic user interfaces, and web navigational assistance.<br></p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</main> | ||
<footer class="page-footer" style="padding: 0;"> | ||
<div class="clean-block add-on social-icons"> | ||
<div class="icons"> | ||
<div class="text-center my-auto"><span>Copyright © Group-10 2020</span></div> | ||
</div> | ||
</div> | ||
</footer><a class="border rounded d-inline scroll-to-top" href="#page-top"><i class="fas fa-angle-up"></i></a> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/js/bootstrap.bundle.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.10.0/baguetteBox.min.js"></script> | ||
<script src="assets/js/smoothproducts.min.js"></script> | ||
<script src="assets/js/theme.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.js"></script> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
/*! | ||
* bootstrap-vertical-tabs - v1.2.2 | ||
* https://dbtek.github.io/bootstrap-vertical-tabs | ||
* 2016-12-02 | ||
* Copyright (c) 2016 İsmail Demirbilek | ||
* License: MIT | ||
*/ | ||
|
||
.tabs-left, | ||
.tabs-right { | ||
border-bottom: none; | ||
padding-top: 2px; | ||
} | ||
|
||
.tabs-left { | ||
border-right: 1px solid #ddd; | ||
} | ||
|
||
.tabs-right { | ||
border-left: 1px solid #ddd; | ||
} | ||
|
||
.tabs-left>li, | ||
.tabs-right>li { | ||
float: none; | ||
margin-bottom: 2px; | ||
} | ||
|
||
.tabs-left>li { | ||
margin-right: -1px; | ||
} | ||
|
||
.tabs-right>li { | ||
margin-left: -1px; | ||
} | ||
|
||
.tabs-left>li.active>a, | ||
.tabs-left>li.active>a:hover, | ||
.tabs-left>li.active>a:focus { | ||
border-bottom-color: #ddd; | ||
border-right-color: transparent; | ||
} | ||
|
||
.tabs-right>li.active>a, | ||
.tabs-right>li.active>a:hover, | ||
.tabs-right>li.active>a:focus { | ||
border-bottom: 1px solid #ddd; | ||
border-left-color: transparent; | ||
} | ||
|
||
.tabs-left>li>a { | ||
border-radius: 4px 0 0 4px; | ||
margin-right: 0; | ||
display: block; | ||
} | ||
|
||
.tabs-right>li>a { | ||
border-radius: 0 4px 4px 0; | ||
margin-right: 0; | ||
} | ||
|
||
.sideways { | ||
margin-top: 50px; | ||
border: none; | ||
position: relative; | ||
} | ||
|
||
.sideways>li { | ||
height: 20px; | ||
width: 120px; | ||
margin-bottom: 100px; | ||
} | ||
|
||
.sideways>li>a { | ||
border-bottom: 1px solid #ddd; | ||
border-right-color: transparent; | ||
text-align: center; | ||
border-radius: 4px 4px 0px 0px; | ||
} | ||
|
||
.sideways>li.active>a, | ||
.sideways>li.active>a:hover, | ||
.sideways>li.active>a:focus { | ||
border-bottom-color: transparent; | ||
border-right-color: #ddd; | ||
border-left-color: #ddd; | ||
} | ||
|
||
.sideways.tabs-left { | ||
left: -50px; | ||
} | ||
|
||
.sideways.tabs-right { | ||
right: -50px; | ||
} | ||
|
||
.sideways.tabs-right>li { | ||
-webkit-transform: rotate(90deg); | ||
-moz-transform: rotate(90deg); | ||
-ms-transform: rotate(90deg); | ||
-o-transform: rotate(90deg); | ||
transform: rotate(90deg); | ||
} | ||
|
||
.sideways.tabs-left>li { | ||
-webkit-transform: rotate(-90deg); | ||
-moz-transform: rotate(-90deg); | ||
-ms-transform: rotate(-90deg); | ||
-o-transform: rotate(-90deg); | ||
transform: rotate(-90deg); | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.