-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
26 lines (24 loc) · 1.03 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
<!DOCTYPE HTML>
<HTML>
<HEAD>
<meta charset="UTF-8">
<title>Subgroup Recommender</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<link rel="stylesheet" href="subgroup_finder.css"/>
</HEAD>
<BODY>
<div id="click-here">
<div class="text">Click the button to find out what groups we recommend for you!</div>
<div class="button">
<fb:login-button scope="public_profile,email" onlogin="grabFB_ID();">
Click Here!
</fb:login-button>
</div>
<div class="text">All recommendations are based off of your past activity in HH.</div>
</div>
<div id="recommendations"></div>
<script type="text/javascript" src="js/subgroup_finder.js"></script>
<script type="text/javascript" src="js/fb_oauth.js"></script>
</BODY>
</HTML>