-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
24 lines (24 loc) · 915 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
<!DOCTYPE html>
<html>
<head>
<script src="popup.js"></script>
<link rel="stylesheet" href="popup.css"/>
</head>
<body>
<div class="container">
<h3>Auto Login Credentials:</h3>
<div class="form">
<div class="form-group field">
<input type="input" class="form-field" placeholder="Username" id='sdarot-auto-username' required />
</div>
<div class="form-group field">
<input type="password" class="form-field" placeholder="Password" id='sdarot-auto-password' required />
</div>
</div>
<div class="save-section">
<div id="save-popup" class="hidden">Saved!</div>
<button class="save-button" role="button" id="sdarot-auto-login-save">Save</button>
</div>
</div>
</body>
</html>