-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
66 lines (53 loc) · 1.7 KB
/
server.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
const express = require("express");
const app = express();
const path = require("path");
// Set EJS as the templating engine
app.set("view engine", "ejs");
app.set("views", path.join(__dirname, "views")); // Ensure views folder exists
// Middleware to serve static files (CSS, JS, images)
app.use(express.static(path.join(__dirname, "public")));
app.use(express.urlencoded({ extended: true }));
app.get('/hello', (req, res) => {
res.send('Hello World');
});
// Dashboard Route
app.get("/dashboard", (req, res) => {
res.render("dashboard", {"title": "Dashboard", "name": "John Doe"});
});
// Activities Route
app.get("/activities", (req, res) => {
res.render("activities",
{
"title": "Activities",
"activities": ["Swimming", "Running", "Cycling", "Hiking"]
});
});
// Contact Route
app.get("/contact", (req, res) => {
res.render("contact", {"title": "Contact"});
});
// Contact Route
app.post("/contact-message", async (req, res) => {
const { message, name } = req.body;
//Email you want to receive notifications at
const email = "";
const formattedMessage = `
Name: ${name}
Message: ${message}
`;
const response = await fetch("https://bc-email-server-main-hz0hq0.laravel.cloud/contact", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
email,
message: formattedMessage,
subject: `New Message from ${name}`
}),
});
res.send("Message sent");
});
// Start Server
const PORT = process.env.PORT || 3001;
app.listen(PORT, () => console.log(`Server running on http://localhost:${PORT}`));