-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
41 lines (41 loc) · 831 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
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<style>
body {
width: 400px;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
}
h1 {
font-size: 1.2rem;
margin: 0 0 0.5rem;
}
input {
width: 20rem;
}
#errors {
color: firebrick;
}
#warnings {
color: orange;
}
</style>
</head>
<body>
<header>
<h1>Github Easy PR</h1>
<a href="https://github.com/settings/tokens" target="_blank">Create token</a>
</header>
<div>
<input id="token" placeholder="Set your github token" />
<button>Save</button>
</div>
<div id="errors"></div>
<div id="warnings"></div>
</body>
<script type="module" src="./popup.js"></script>
</html>