-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (22 loc) · 883 Bytes
/
index.html
File metadata and controls
24 lines (22 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles/style.css">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; connect-src 'self' http://server:3000;">
<title>Drive</title>
</head>
<body>
<div id="container-signin">
<h1>Signin</h1>
<input type="text" placeholder="name" name="name" id="name">
<input type="email" placeholder="email" name="email" id="email">
<span id="errorSignIn"></span>
<input type="password" placeholder="password" name="password" id="password">
<button type="button" title="signin" id="signin">signin</button>
<button type="button" title="login" id="go-to-login">Go to login</button>
</div>
<script src="renderer/index.js"></script>
</body>
</html>