-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (86 loc) · 4.75 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>STiBaRC Developer Portal</title>
<link rel="icon" type="image/png" href="./assets/images/engineerbo.png">
<!-- CSS -->
<link href="./assets/css/global.css" rel="stylesheet">
<link href="./assets/css/index.css" rel="stylesheet">
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Source+Code+Pro&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Round" rel="stylesheet">
</head>
<body>
<div class="outside-wrapper">
<div class="outside">
<div class="content">
<div class="main-content">
<div class="mobile-nav">
<span class="flex-grow"></span>
<button class="user-button" id="mobilePfpBtn">
<div class="pfp">
<img id="mobilePfpBtnImg" class="pfp"
src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
alt="Pfp">
</div>
</button>
</div>
<div class="scroll-wrapper">
<div class="scroller">
<div class="wrapper">
<div class="top-bar">
<a class="logo" href="./"><img src="./assets/images/engineerbo_small.png"
title="Jim🅱o doing engineering stuffs"
alt="Jim🅱o doing engineering stuffs" width="35px"></a>
<span class="flex-grow"></span>
<a href="https://stibarc.com/oauth/?id=8e8fa1e98d84d87f0948&perms=" id="topBtn"
class="button">Sign in</a>
<button id="pfpBtn" class="user-button" style="display: none;">
<img id="pfpBtnImg" class="pfp"
src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="
alt="Pfp">
</button>
<div id="pfpDropdown" class="dropdown" style="display: none;">
<div class="header"><span id="pfp-username"></span></div>
<div class="divider"></div>
<div class="items">
<a href="./logout.html" class="item logout">Sign out</a>
</div>
</div>
</div>
<div class="main">
<h1 class="title">STiBaRC Developer Program</h1>
<div class="m-top-medium m-bottom-medium">Ever wanted to make your app using STiBaRC
that
responds to
events
on the
site, but don't want to spam the API?
<p>Well worry no more, the STiBaRC Developer Program will allow you to register
your app
with
STiBaRC and get updates pushed straight to your webhook URL of choice,
whenever
something
happens on
the site!
<p>You can also STiBaRC as an authorization system for you projects with OAuth!
</div>
</div>
</div>
</div>
</div>
</div> <!-- /main-content -->
</div>
</div>
</div>
<script src="./assets/js/global.js"></script>
<script src="./assets/js/index.js"></script>
</body>
</html>