After submitting I'm not being redirected to the url which greets

form.html:

Document SUBMIT

formsubmission.js:

const express=require(‘express’)
const app=express()

app.get(’/’,(req,res)=>{
res.send(‘Hello World’)
})
app.get(’/greet’,(req,res)=>{
let person=‘Guest’;

if(req.query.person)
    person=req.query.person
    res.send('Good evening '+person)

})

app.get(’/form’,(req,res)=>{
res.sendFile(__dirname+’/files/form.html’)
})

app.listen(4444,()=>{
console.log(“Server started on http:localhost:4444”)
})

Please upload the project on github and send the link here.