First Push
This commit is contained in:
27
index.html
Normal file
27
index.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!--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>
|
Reference in New Issue
Block a user