-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
88 lines (73 loc) · 2.01 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<html>
<head>
<title>Notion Build</title>
<style>
html {
min-width: 400px;
margin: 10px;
border-radius: 15px;
padding-bottom: 10%;
}
.container img {
width: 83px;
display: block;
margin: auto;
margin-bottom: 10%;
}
h1 {
color: aquamarine;
text-align: center;
margin: 12% 0;
}
input {
width: 100%;
border: none;
padding: 15px;
margin-bottom: 6%;
color: black;
border: 3px solid #000000;
}
#setTrigger {
width: 100%;
padding: 16px;
cursor: pointer;
display: block;
background: #000000;
outline: none;
border: none;
font-size: 15pt;
color: #fff;
}
label {
font-size: 12pt;
margin-bottom: 3%;
display: block;
}
footer {
text-align: center;
margin-top: 24px;
color: #545454;
}
</style>
<script src="src/extension.js"></script>
</head>
<body>
<div class="container">
<header>
<img src="/assets/logo.png" alt="Notion Build">
</header>
<main id="app">
<label for="buildHook">Build Hook URL <small>* required</small></label>
<input id="buildHook" name="buildHook" type="text">
<label for="statusbadge">Deploy status badge image link <small>(optional)</small></label>
<input id="statusbadge" name="statusbadge" type="text">
<input type="button" id="setTrigger">
</main>
<footer>
© Notion Build <br /> Create your free Notion blog: <a href="https://mynotion.blog">mynotion.blog</a>
<br>
Made By <a href="https://github.com/yudax42">yudax42</a>
</footer>
</div>
</body>
</html>