27 lines
777 B
HTML
27 lines
777 B
HTML
|
<!--index.html-->
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
||
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
|
||
|
<title>Inventory Track</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Inventory Tracker</h1>
|
||
|
<h2>Login:</h2>
|
||
|
<form id="loginForm">
|
||
|
<p>Email:</p>
|
||
|
<input type="email" name="email" id="email" value="">
|
||
|
<p>Password:</p>
|
||
|
<input type="password" name="password" id="password" value="">
|
||
|
<input id="submit" type="submit" value="submit">
|
||
|
</form>
|
||
|
|
||
|
<p id="response"></p>
|
||
|
|
||
|
<!-- You can also require other files to run in this process -->
|
||
|
<script src="./renderer.js"></script>
|
||
|
</body>
|
||
|
</html>
|