-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpopup.html
40 lines (39 loc) · 1.42 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
<!DOCTYPE html>
<html>
<head>
<title>Hacktoberfest</title>
<link href="popup.css" rel="stylesheet">
<link href="flex.css" rel="stylesheet">
<!--Closes #74:-->
<!--Link to Oswald font from Google Fonts.-->
<!--This link is essential in order for the Oswald font to work.-->
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
<meta http-equiv="Cache-control" content="no-cache">
</head>
<body>
<div id="header">
<a href="https://hacktoberfest.digitalocean.com" target="_blank">
<!--<img src="logo.svg">-->
<img src="logo-hacktoberfest.png">
</a>
</div>
<div id="main" class="flex-column align-center justify-center">
<div id="mostRecentUsers" class="flex-row align-center justify-space-around"></div>
<div id="newAccount" class="flex-column align-center justify-space-between">
<input type="text" placeholder="Github Username" id="githubHandle">
<button id="check" class="button">Check Progress</button>
<button id="show" class="button">Show Results</button>
</div>
<div id="result" class="flex-column justify-start align-center">
</div>
<div id="overlay">
<dialog id="dialog">
<div id="dialogContent"></div>
</br>
<button id="closeBtn" class="button">Close</button>
</dialog>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>