完成修改密码界面并修复了大量bug

This commit is contained in:
2023-12-16 09:16:17 +00:00
parent f1c95ea987
commit d23d0986d6
6 changed files with 307 additions and 9 deletions

View File

@ -162,6 +162,10 @@ app.get('/register', (req, res) => {
res.sendFile(join(__dirname, 'register.html'));
});
app.get('/passwd', (req, res) => {
res.sendFile(join(__dirname, 'passwd.html'));
});
server.listen(3000, () => {
console.log('server running at http://localhost:3000');
});