-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (47 loc) · 1.04 KB
/
index.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<style>
body{
/* display: flex;
flex-direction: column; */
width: 550px;
text-align: center;
}
.container {
display: flex;
text-align: center;
padding: 1rem 1rem;
}
input {
height: 20px;
width: 50px;
outline: none;
}
label{
width:50px;
font-weight: bold;
}
#secret {
width: 300px
}
</style>
</head>
<body>
<div class="container" >
<div class="section">
<label>Extension active</label>
<input type="checkbox" id="changeActive" checked/>
</div>
<div class="section">
<label>Secret Password: </label>
<input type="text" id="secret" />
</div>
</div>
<div>
Press ctrl+q to decode every encoded message on screen
<br> After you write a message press ctrl+alt+q to encode the message on place
</div>
<script src="popup_script.js"></script>
</body>
</html>