-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwelcome.html
59 lines (35 loc) · 1.65 KB
/
welcome.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
<html>
<head>
<title>WorkoutCell - Welcome to the login page</title>
<script type="text/javascript" src='jquery.corner.js'></script>
<script type="text/javascript" src="/js/jquery-1.6.2.min.js"></script>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
$(document).ready(function(){
$("#welcomeBox").corner();
FB.init({
appId:'277924085557007', cookie:true,
status:true, xfbml:true
});
FB.Event.subscribe('auth.login', function () {
window.location = "http://wc.guiomie.cloud9ide.com/auth/facebook";
});
});
</script>
</head>
<body background="/background/pattern.png">
<div style="padding-top: 100px;">
<h1 style="text-align: center"> <font size="9" face="verdana" color="white">WorkoutCell</font> </h1>
<div id="welcomeBox" style="padding-top: 40px; margin-left: auto; margin-right: auto; width: 400px; height: 300px; background-color:#FFFFFF;">
<div style="vertical-align: middle; text-align: center">
<font face="verdana">
We currently are closed to the public. <br> <br>
For those with access, you can login with the link below.<br><br><br>
<a href="/auth/facebook"> <img src="img/login_button.png"> </a> <br><br><br><br>
<font size="2"> For any questions: [email protected]<br> </font>
</font>
</div>
</div>
</div>
</body>
</html>