Added login page and login form functionality

Added body-parser node_module
Created login.html
Renamed index.html to main.html
Added simple login functionality in index.js
This commit is contained in:
ShakedAp
2023-06-25 10:17:45 +03:00
parent 395cd7a195
commit 0b90b3a860
309 changed files with 3533 additions and 28037 deletions

17
src/main.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script defer type="text/javascript" src="client.js"></script>
<title>Client</title>
</head>
<body>
Client page!
<br/>
<video id="videoPlayer" width="650" controls disablePictureInPicture controlsList="nodownload noplaybackrate" muted>
<source src="/video" type="video/mp4" />
</video>
</body>
</html>