diff --git a/Registration Form/app.js b/Registration Form/app.js index 33d3145..97b481e 100644 --- a/Registration Form/app.js +++ b/Registration Form/app.js @@ -30,6 +30,8 @@ if ('development' == app.get('env')) { } //app.post('/file-upload',routes.fileUpload); app.get('/', routes.index); +app.get('/aboutPage',routes.about); +app.get('/contactPage',routes.contact); app.get('/index_page',routes.index_page); //app.get('/users', user.list); app.get('/login',routes.login); diff --git a/Registration Form/public/img/ali512.png b/Registration Form/public/img/ali512.png new file mode 100755 index 0000000..49acc8e Binary files /dev/null and b/Registration Form/public/img/ali512.png differ diff --git a/Registration Form/public/img/malcolm-x.jpg b/Registration Form/public/img/malcolm-x.jpg new file mode 100644 index 0000000..d08a428 Binary files /dev/null and b/Registration Form/public/img/malcolm-x.jpg differ diff --git a/Registration Form/public/img/nextButton.png b/Registration Form/public/img/nextButton.png new file mode 100644 index 0000000..1942528 Binary files /dev/null and b/Registration Form/public/img/nextButton.png differ diff --git a/Registration Form/public/img/prevButton.jpg b/Registration Form/public/img/prevButton.jpg new file mode 100644 index 0000000..4946c9a Binary files /dev/null and b/Registration Form/public/img/prevButton.jpg differ diff --git a/Registration Form/public/img/prevButton.png b/Registration Form/public/img/prevButton.png new file mode 100644 index 0000000..25610b4 Binary files /dev/null and b/Registration Form/public/img/prevButton.png differ diff --git a/Registration Form/public/img/umar512.JPG b/Registration Form/public/img/umar512.JPG new file mode 100755 index 0000000..bb79453 Binary files /dev/null and b/Registration Form/public/img/umar512.JPG differ diff --git a/Registration Form/public/img/wajeeh512.jpg b/Registration Form/public/img/wajeeh512.jpg new file mode 100755 index 0000000..98c14b5 Binary files /dev/null and b/Registration Form/public/img/wajeeh512.jpg differ diff --git a/Registration Form/public/stylesheets/style.css b/Registration Form/public/stylesheets/style.css index 318fadd..3111428 100644 --- a/Registration Form/public/stylesheets/style.css +++ b/Registration Form/public/stylesheets/style.css @@ -4,7 +4,6 @@ body { } #websiteDescription{ - opacity:0.85; width: 50%; margin: auto; @@ -18,6 +17,37 @@ line-height: 45px; #websitePunchline{ color: red; } +#techsUsed{ + color: red; +} +#contactContainer{ +width: 75%; +text-align: center; +margin: auto; +display: inline-block; +} +#member1,#member2,#member3,#member4{ + text-align: left; + width: 256px; + opacity: 0.95; + display: inline-block; + background-color: green; + color: white; +} +#memberInformation{ + color: red; +} +#aboutWebsite{ +background-color: #0C2707; +opacity: 0.85; +width: 80%; +margin: auto; +margin-top: 60px; +text-align: center; +font-size: 20px; +letter-spacing: 6px; +color: white; +line-height: 45px;} a { color: #00B7FF; diff --git a/Registration Form/routes/index.js b/Registration Form/routes/index.js index f88857b..b30ed26 100644 --- a/Registration Form/routes/index.js +++ b/Registration Form/routes/index.js @@ -52,12 +52,14 @@ console.log("herer"); exports.index= function(req,res){ /* res.render('index');*/ res.render('Main'); -} -exports.LoginPage = function(req, res){ - - +}; +exports.contact = function(req, res){ +res.render('contactPage.ejs'); +}; +exports.about = function(req, res){ +res.render('aboutPage.ejs'); }; exports.index_page = function(req,res) { res.render('index'); -} \ No newline at end of file +}; \ No newline at end of file diff --git a/Registration Form/views/Main.ejs b/Registration Form/views/Main.ejs index ff3c16e..08f8916 100644 --- a/Registration Form/views/Main.ejs +++ b/Registration Form/views/Main.ejs @@ -11,8 +11,8 @@