-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebteam.php
128 lines (93 loc) · 4.41 KB
/
webteam.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
119
120
121
122
123
124
125
126
127
128
<?php
session_start();
error_reporting(0);
require("functions.php");
if (!isset($_SESSION["email"])) {
header('Location: http://localhost:5000/vide/examples/fb.php ');
}
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 echo REDIRECTLINK; ?> >Home</a>
<a class="mdl-navigation__link mdl-typography--text-uppercase" target="_blank" href=<?php echo APPLINK;?> >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');
?>
<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-table">
<div class="demo-card-image1 mdl-card mdl-shadow--2dp mdl-cell mdl-cell--6-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">Harsh Kumar</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;">Kushagra Jain</h5>
<h5 style="text-align: center;">Sachin Kadyan</h5>
<h5 style="text-align: center;">Shubham Jana</h5>
</div>
</div>
<?php
require("footer.php");
?>
</div><!-- android layout content end here -->
</div>
<script src="js/material.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-80262297-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>