-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
31 lines (25 loc) · 882 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>
<head>
<title>AutoPass Login</title>
<link rel="stylesheet" href="popup.css" />
</head>
<body>
<div class="container">
<form class="form" id="credentialsForm">
<h1>AutoPass Login</h1>
<label for="vierpUsername">VIERP Username</label>
<input type="text" id="vierpUsername" name="vierpUsername" required>
<label for="vierpPassword">VIERP Password</label>
<input type="password" id="vierpPassword" name="vierpPassword" required>
<label for="volpUsername">VOLP Username</label>
<input type="text" id="volpUsername" name="volpUsername" required>
<label for="volpPassword">VOLP Password</label>
<input type="password" id="volpPassword" name="volpPassword" required>
<div class="quote" id="quote"></div>
<button type="submit">Save Credentials</button>
</form>
</div>
<script src="popup.js"></script>
</body>
</html>