-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebteam.php
More file actions
146 lines (106 loc) · 5.59 KB
/
webteam.php
File metadata and controls
146 lines (106 loc) · 5.59 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?php
session_start();
error_reporting(0);
require("functions.php");
if (!isset($_SESSION["email"])) {
header('Location: '.LOGINLINK);
}
else{
scheckaccesstoken();
}
if (!isset($_SESSION["email"])) {
add_user();
}
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Introducing Lollipop, a sweet new take on Android.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cryptex</title>
<link rel="shortcut icon" type="image/x-icon" href="images/cry.png">
<!-- Page styles -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="css/material.css">
<link rel="stylesheet" href="css/styles.css">
<style>
</style>
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-drawer mdl-layout--fixed-header">
<div class="android-header mdl-layout__header mdl-layout__header--waterfall">
<div class="mdl-layout__header-row">
<span class="android-title mdl-layout-title">
<img class="android-logo-image" src="images/cryptex-small.png">
</span>
<!-- Add spacer, to align navigation to the right in desktop -->
<div class="android-header-spacer mdl-layout-spacer"></div>
<!-- Navigation -->
<div class="android-navigation-container">
<nav class="android-navigation mdl-navigation">
<a class="mdl-navigation__link mdl-typography--text-uppercase" href="<?php REDIRECTLINK ?>">Home</a>
<a class="mdl-navigation__link mdl-typography--text-uppercase" target="_blank" href="https://www.facebook.com/phoenix.cryptex/app/202980683107053/">Forum</a>
</nav>
</div>
<span class="android-mobile-title mdl-layout-title">
<img class="android-logo-image" src="images/cryptex-small.png">
</span>
</div>
</div>
<?php
require('sider2.php');
?>
<?php
session_start();
require_once("functions.php");
$level=getlevel($_SESSION["fb_id"]);
$questionData=getQuestionData($level);
$row=mysql_fetch_array($questionData);
?>
<div class="android-content mdl-layout__content">
<a name="top"></a>
<div class="mdl-grid">
<div class="android-customized-section-text">
<div class="mdl-typography--font-light mdl-typography--display-1-color-contrast">Web Development Team</div>
</div>
<div class="mdl-cell mdl-cell--11-col mdl-cell--12-col-phone mdl-cell--1-offset-desktop mdl-cell--1-offset-tablet">
<div class="mdl-grid">
<div class="demo-card-image1 mdl-card mdl-shadow--2dp mdl-cell mdl-cell--4-col mdl-cell--10-col-phone">
<div class="mdl-card__title mdl-card--expand"></div>
<div class="mdl-card__actions">
<span class="demo-card-image__filename">Lovepreet Singh</span>
</div>
</div>
<div class="demo-card-image2 mdl-card mdl-shadow--2dp mdl-cell mdl-cell--4-col mdl-cell--10-col-phone">
<div class="mdl-card__title mdl-card--expand"></div>
<div class="mdl-card__actions">
<span class="demo-card-image__filename">Shreyas Sinha</span>
</div>
</div>
<div class="demo-card-image3 mdl-card mdl-shadow--2dp mdl-cell mdl-cell--4-col mdl-cell--10-col-phone">
<div class="mdl-card__title mdl-card--expand"></div>
<div class="mdl-card__actions">
<span class="demo-card-image__filename">Aryan Raj</span>
</div>
</div>
</div>
</div>
<div class="android-customized-section-text">
<div class="mdl-typography--font-light mdl-typography--display-1-color-contrast">Content Team</div>
<h5 style="text-align: center;">Ishan Maheshwari</h5>
<h5 style="text-align: center;">Aditya Malhotra</h5>
<h5 style="text-align: center;">Siddhant Chadha</h5>
<h5 style="text-align: center;">Sachin Kadyan</h5>
</div>
</div>
<?php
require("footer.php");
?>
</div><!-- android layout content end here -->
</div>
<script src="js/material.js"></script>
</body>
</html>