-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathindex.html
92 lines (90 loc) · 4.72 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
<!DOCTYPE>
<html>
<head>
<title>Github Battle</title>
<link rel='stylesheet' type='text/css' href='css/styles.css'/>
<link rel='stylesheet' type='text/css' href='css/foundation.css'/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type='text/javascript' src='javascript/scraper.js?v=3'></script>
<script type='text/javascript' src='javascript/app.js?v=2'></script>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,900,900italic' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Titillium+Web:400,900' rel='stylesheet' type='text/css'>
<meta property="og:title" content="Github Battle"/>
<meta property="og:url" content="http://www.githubbattle.com"/>
<meta property="og:image" content="images/githubbattle.png"/>
<meta property="og:site_name" content="GithubBattle"/>
<meta property="og:description"
content="Battle any Github account to see who is more rep."/>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-51659791-3', 'githubbattle.com');
ga('send', 'pageview');
</script>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</head>
<body>
<div class='row container'>
<div class='twelve columns'>
<div class='row'>
<div class='eight columns centered center' id='title'>
<h1>GithubBattle</h1>
<h3>Battle two Github accounts.</h3>
<h5 class='credit'>created by <a href='http://twitter.com/jessepollak'>Jesse P</a> and <a href='http://twitter.com/datarem'>Remy G</a></h5>
</div>
</div>
<form id='users'>
<div class='row'>
<div class='five columns user user1'>
<input type='text' name='user_1' value='jessepollak'/>
</div>
<div class='two columns vs center'>
<h2>vs</h2>
</div>
<div class='five columns user user2'>
<input type='text' name='user_2' value='remyguercio'/>
</div>
</div>
<div class='row submit-container'>
<div class='six columns centered'>
<div id='submit' class='center'>BATTLE</div>
</div>
</div>
<div class='row processing-container' >
<div class='six columns centered'>
</div>
</div>
</form>
<div class='row winner-container' style='display: none;'>
<div class='result_1 score six columns'>
<h3 class='center'></h3>
<h2 class='center'>0</h2>
</div>
<div class='result_2 score six columns'>
<h3 class='center'></h3>
<h2 class='center'>0</h2>
</div>
</div>
<div class='row graphs-container' style='display: none;'>
</div>
<div class='row retry-container center' style='display: none;'>
<div class='six columns centered'>
<div id='retry' class='center'>AGAIN!</div>
</div>
</div>
<div class='share-container' style='display: none;'>
<div class='eight columns center centered'>
<h5>Share this battle: <a href='http://githubbattle.com'>http://githubbattle.com</a></h5>
</div>
</div>
<div class='row hn-container center'>
<div class='eight columns centered'>
<h5>Fork on Github <a href='https://github.com/jessepollak/gitgladiator'>here</a></h5>
</div>
</div>
</div>
</div>
</body>
</html>