-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstalled.html
62 lines (61 loc) · 2.14 KB
/
installed.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="popup.css" />
<link rel="stylesheet" href="installed.css" />
</head>
<body>
<div id="global-container">
<h3>Set the volume before you go!</h3>
<div id="volume-controls" class="volume-controls">
<button id="quieter" class="volume-btn">
<img src="assets/volume-down-fill.svg" height="32px" width="32px" />
</button>
<div id="level-container">
<div id="level">5</div>
<div id="level-decorator"><p>/10</p></div>
<div id="level-border"></div>
</div>
<button id="louder" class="volume-btn">
<img src="assets/volume-up-fill.svg" height="32px" width="32px" />
</button>
</div>
<div id="email-container" class="email-container">
<iframe name="dummyframe" id="dummyframe" style="display: none;"></iframe>
<form
id="email-input-container"
class="email-input-container"
action="https://eoaig70vd7x47x4.m.pipedream.net"
method="post"
target="dummyframe"
novalidate
>
<div class="email-label">
<img src="assets/at-icon.svg" height="16px" width="16px" />
Email
</div>
<input
type="text"
name="email"
placeholder="Empty"
required
id="email-input"
class="email-input"
/>
<button class="email-button" type="submit">
<img src="assets/checkmark.svg" height="16px" width="16px" />
</button>
<input type="hidden" name="name" value="" />
<input type="hidden" name="source" value="notion-ding_popup" />
</form>
<p>Put in your email - I'll let you know when I build something new!</p>
</div>
</div>
<script src="./popup.js"></script>
</body>
</html>
<!--
1. I need to be able to submit the html form to pipedream. Either using preventDefault and js or other controls
2. I need to extract the values from the body in pipedream and pass them to our spreadsheet
-->