InventoryTrack/index.html

27 lines
777 B
HTML
Raw Normal View History

2022-11-02 22:16:03 -04:00
<!--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>