-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (50 loc) · 1.33 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
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nango Gmail Connection</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
}
button {
background-color: #4CAF50;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border: none;
border-radius: 8px;
}
#status {
margin-top: 20px;
}
#emails {
text-align: left;
margin-top: 20px;
}
.email {
border: 1px solid #ccc;
padding: 10px;
margin-bottom: 10px;
border-radius: 5px;
background-color: #f9f9f9;
}
</style>
</head>
<body>
<h1>Nango Gmail Connection</h1>
<p>Click the button below to add a Gmail connection using Nango.</p>
<button id="connectButton">Add Gmail Connection</button>
<div id="status"></div>
<div id="emails"></div>
<script type="module" src="./main.js"></script>
</body>
</html>