-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (55 loc) · 2.31 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
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" />
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div hidden id="auth-successful">
<div id="main">
<div class="fof">
<h1>You've been authenticated</h1>
<h2>Please close this tab</h2>
</div>
</div>
</div>
<div hidden id="auth-unsuccessful">
<div id="main">
<div class="fof">
<h1>Authentication Unsuccessful</h1>
</div>
</div>
</div>
<br /><br /><br />
<div class="columns">
<div class="column is-half is-offset-one-quarter">
<div class="card">
<div class="card-content">
<div class="content" stlye="font-weight: 700">
<h2>Star us on GitHub 🌟</h2>
<span>
<strong>arXiv to Notion</strong> is released under the MIT license and the source is
available on github. If you like using arXiv to Notion then consider dropping us a star.
</span>
<br /><br />
<a
class="button"
href="https://github.com/arxivtonotion"
target="_blank"
rel="noopener noreferrer"
>
<i class="fab fa-github mr-2"></i> arxiv to Notion
</a>
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://kit.fontawesome.com/f0e3875af3.js" crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>