-
Notifications
You must be signed in to change notification settings - Fork 1
/
challenges.php
120 lines (100 loc) · 4.28 KB
/
challenges.php
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?php
$title="- Challenge Guide!";
$description="SCHOOLD U Challenges are divided between Pooled and Head2Head. In a head 2 head challenge, 2 individuals challenge eachconfidentother over who will win a specific college game. The loser must donate his or her money to the charity paired with the winning school. In a pooled match, both participants donate to the winning teams paired charity.";
require_once("page_framework/header.php");
?>
<body>
<div class="container">
<? include_once( 'page_framework/nav.php' ); ?>
<div class="well well-large">
<div class="row-fluid">
<div class="span6 well well-small">
<h4 class="text-info">Head 2 Head Challenge</h4>
<h5>The Loser sends money to the Winner's charity</h5><br/>
<center>
<img src="img/h2h_diag_flat.png"/>
</center>
<hr/>
<p>Get in on the game and show some school spirit by inviting friends or friendly rivals to accept your one-on-one challenge.</p>
<ul class="unstyled">
<li><h5>Step 1: Sign in or create a SCHOOLD U account.</h5></li>
<li><h5>Step 2: Create a Head-to-Head Challenge:</h5></li>
<li>
<ul >
<li>Select the school you believe will win the game</li>
<li>Choose the amount of money you would be willing to donate</li>
</ul>
</li>
<li><h5>Step 3: Share with Friends</h5>
<ul >
<li>Broadcast your challenge for friends to view and accept by:
<ul >
<li>Posting on Facebook</li>
<li>Sending a Facebook message</li>
<li>Sending an email</li>
<li>Sharing the link by copy and pasting it anywhere you wish</li>
</ul>
</li>
</ul>
</li>
<li><h5>Step 4: Bring the Heat!</h5>
<ul >
<li>Create additional challenges</li>
<li>Talk smack to rivals who have accepted your challenge</li>
</ul>
</li>
<li><h5>Step 5: Make 'em Pay!</h5></li>
<li>After the game is complete, the Loser of the challenge sends money to the Winner's charity.</li>
<li><h5>Step 6: Rub it in!</h5></li>
<li>We will notify you of the results of the game by email.
<ul >
<li>If your team wins, you can really rub it in and make your rivals feel the pain of donating to your university</li>
<li>If your team loses, at least your money was donated to improving higher education.</li>
</ul>
</li>
</ul>
</div>
<div class="span6 well well-small ">
<h4 class="text-info">Pooled Challange</h4>
<h5>Everyone donates to the winning charity</h5><br/>
<center>
<img src="img/pool_diag_flat.png"/>
</center>
<hr/>
Get a piece of the action and support your favorite school by joining a collective group of fans in a pool against a rivaling team.
<ul>
<li><h5>Step 1: Sign in or create a SCHOOLD U account.</h5></li>
<li><h5>Step 2: Join a Pooled Challenge:</h5>
<ul>
<li>Select the school you believe will win the game</li>
<li>Choose the amount of money you are willing to donate</li>
</ul></li>
<li><h5>Step 3: Share with Friends:</h5>
<ul>
<li>Broadcast your participation in the pooled challenge and invite friends to join in by:
<ul>
<li>Posting on Facebook</li>
<li>Sending a Facebook message</li>
<li>Sending an email</li>
</ul></li>
</ul></li>
<li><h5>Step 4: Bring the Heat!</h5>
<ul><li>Talk smack to rivals you know in the pool on Facebook by sending them a private message or posting it on a group's wall.</li></ul>
</li>
<li><h5>Step 5: Donate!</h5></li>
<li>After the game is complete, your donation will be sent to the winning schools paired charity.</li>
<li><h5>Step 6: Rub it in!</h5></li>
<li>We will notify you of the results of the game by email.
<ul>
<li>If your team wins, celebrate your sweet victory by gloating about it to your rivals on Facebook.</li>
<li>If your team loses, don't be too disheartened because your money will be put to good use, even if it is by your rival's school.</li>
</ul></li>
</ul>
</div>
</div>
<div style="clear:left;"> <br /><br /></div>
</div>
<?include_once('page_framework/footer.php');?>
</div>
</body>
</html>