-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
70 lines (51 loc) · 1.4 KB
/
app.js
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
var express = require("express");
var app = express();
var bodyParser = require("body-parser");
app.use(express.static(__dirname + "/public"));
app.use(bodyParser.urlencoded({extended:true}));
app.set("view engine", "ejs");
app.get("/",function(req,res){
res.render("home");
});
app.get("/login",function(req,res){
res.render("login");
});
//admin routes
app.get("/admin",function(req,res){
res.render("admin/admin_homepage");
});
//dhara routes
app.get("/dhara",function(req,res){
res.render("dhara/dhara_homepage");
});
app.get("/dhara/events",function(req,res){
res.render("dhara/currEvents");
});
app.get("/dhara/events/new",function(req,res){
res.render("dhara/eventForm");
});
//student routes
app.get("/student",function(req,res){
res.render("students/student_homepage");
});
app.get("/student/all_clubs",function(req,res){
res.render("students/students_club");
});
app.get("/student/raaga",function(req,res){
res.render("students/raaga");
});
app.get("/student/narthana",function(req,res){
res.render("students/narthana");
});
app.get("/student/personal",function(req,res){
res.render("students/student_personal");
});
app.get("/student/registeredEvents",function(req,res){
res.render("students/registeredEvents");
});
// app.listen(process.env.PORT, process.env.IP, function(){
// console.log("Server started...");
// })
app.listen(3000,function(){
console.log("Server started at 3000...");
});