UNPKG

nvr-js

Version:

A simple, lightweight, but very functional NVR aimed at 24/7 recording using nodejs

57 lines (44 loc) 1.6 kB
<!DOCTYPE html> <html> <head> <title>NVR JS : Login</title> <meta name="theme-color" content="#3b5998"> <!--Style--> <link rel="stylesheet" href="static/css/default.css" /> <link rel="stylesheet" href="static/css/font-awesome.min.css"> <!--jquery--> <link rel="stylesheet" href="static/css/jquery-ui.min.css"> <script src="static/js/jquery-3.6.0.min.js"></script> <script src="static/js/jquery-ui.min.js"></script> <!--Day JS--> <script src="static/js/customParseFormat.js"></script> <script src="static/js/dayjs.min.js"></script> <!--timeline--> <link rel="stylesheet" href="static/js/vis-timeline-graph2d.min.css" /> <script src="static/js/vis-timeline-graph2d.min.js"></script> <!--scripts--> <script src="static/js/scripts.js"></script> <script src="static/js/canvas2image.js"></script> <!--socket io--> <script src="static/js/socket.io.min.js"></script> </head> <body> <div class="floatingDiv"> <div class="title">Login</div> <img src="static/images/logo.png" style="display: block;margin: auto; margin-top: 30px;"> <table style="width: 50px; margin: auto; margin-bottom: 20px;"> <tr> <td>Username: </td> <td><input type="text" id="Username"></td> </tr> <tr> <td>Password: </td> <td><input type="password" id="Password"></td> </tr> <tr> <td colspan="3" style="text-align: right;"><input type="button" value="Login" onclick="Login()"></td> </tr> </table> </div> </body> </html>