-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
76 lines (67 loc) · 2.65 KB
/
index.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
<?php
require 'resources/functions.php';
require 'resources/config.php';
require 'resources/rpiCAS.php';
require 'partials/head.partial.php';
require 'partials/navigation.partial.php';
?>
<div id="headerwrap">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h1>Find useful, online resources</h1>
<h3>A link database created for RPI students, by RPI students</h3>
<?php
if (phpCAS::isAuthenticated()) {
echo "<p><a class='btn btn-outline btn-lg' href='classes.php'>View classes</a></p>";
} else {
echo "<p><a class='btn btn-outline btn-lg' href='login.php'>Sign in with RCS</a></p>";
}
?>
</div>
<!--<div class="col-lg-8 col-lg-offset-2 himg">-->
<!--<img src="assets/img/browser.png" class="img-responsive">-->
<!--</div>-->
</div>
<!-- /row -->
</div>
<!-- /container -->
</div>
<!-- /headerwrap -->
<!-- *****************************************************************************************************************
SERVICE LOGOS
***************************************************************************************************************** -->
<div id="service">
<div class="container">
<div class="row centered">
<div class="col-md-4">
<i class="fa fa-users"></i>
<h4>Crowd sourced</h4>
<p>
Who knows a field of study best? Those that are regularly involved in it! Then, what better way to
find quality content than what peers have recommended?
</p>
</div>
<div class="col-md-4">
<i class="fa fa-graduation-cap text-rpi"></i>
<h4>RPI in mind</h4>
<p>Made for RPI Students by RPI Students.
We wanted a tool that could help us in our classes,
so we shared it with you: the student body!
</p>
</div>
<div class="col-md-4">
<i class="fa fa-check-circle"></i>
<h4>Quality assured</h4>
<p>Access requires an RPI login so that the community can stay close knit and relevant. Information for your classes will be provided by people
currently enrolled in, interested in, or graduated from your course.
</p>
</div>
</div>
</div>
<!--/container -->
</div>
<!--/service -->
<?php require 'partials/footer.partial.php'; ?>
</body>
</html>