-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.php
More file actions
102 lines (87 loc) · 3.06 KB
/
Copy pathmain.php
File metadata and controls
102 lines (87 loc) · 3.06 KB
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
<?php
session_start();
if(!isset($_SESSION["isAuthenticated"]) || !$_SESSION["isAuthenticated"]){
header("location: /hackathon2016/index.php");
exit;
}
?>
<?php
echo file_get_contents("head.php");
?>
<?php
echo file_get_contents("header.php");
?>
<div class="container">
<!-- Jumbotron Header -->
<header class="jumbotron fp-jt">
<h1> Welcome to Classmate, <?php echo $_SESSION["userName"]; ?></h1>
<p>Here, you can get help from all EAL students, so check out questions or add your own one.</p>
</header>
<hr>
<!-- Title -->
<div class="row">
<div class="col-lg-12">
<h3>Categories</h3>
</div>
</div>
<!-- /.row -->
<!-- Page Features -->
<div class="row text-center">
<div class="col-md-4 col-sm-6 feature">
<div class="thumbnail">
<a href="design.php" class="">
<div class="col-sm-12 categoryiconwrap designcat designcatbg">
<i class="fa fa-pencil fa-5x"></i>
</div>
</a>
<div class="caption">
<h3>Design</h3>
<p>Anything related to design</p>
<p>
<a href="design.php" class="btn btn-success">See questions</a>
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 feature">
<div class="thumbnail">
<a href="code.php">
<div class="col-sm-12 categoryiconwrap codecat codecatbg">
<i class="fa fa-code fa-5x"></i>
</div>
</a>
<div class="caption">
<h3>Coding</h3>
<p>Anything code/programming related</p>
<p>
<a href="code.php" class="btn btn-success">See questions</a>
</p>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 feature">
<div class="thumbnail">
<a href="off-topic.php">
<div class="col-sm-12 categoryiconwrap off-topiccat off-topiccatbg">
<i class="fa fa-coffee fa-5x"></i>
</div>
</a>
<div class="caption">
<h3>Off topic</h3>
<p>Anything really</p>
<p>
<a href="off-topic.php" class="btn btn-success">See questions</a>
</p>
</div>
</div>
</div>
<!-- /.row -->
<hr>
</div>
<!-- Footer -->
<?php
echo file_get_contents("pagefooter.php");
?>
<?php
echo file_get_contents("footer.php");
?>