-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
31 lines (26 loc) · 917 Bytes
/
popup.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="popup.css">
<script src="./popup-init.js"></script>
</head>
<body>
<h1>WispAI</h1>
<div class="input-label-pair">
<label for="email-input">Email</label>
<input id="email-input" type="text" placeholder="Email">
</div>
<div class="input-label-pair">
<label for="password-input">Password</label>
<input id="password-input" type="password" placeholder="Password">
</div>
<button id="sign-in-button">Sign In</button>
<p id="error-info"></p>
<p>If you don't have an account yet, go to <a href="https://wispai-beta.vercel.app/"
target="_blank">Wisp AI</a> to create one.</p>
<script src="./popup-script.js"></script>
</body>
</html>