-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
93 lines (84 loc) · 3.88 KB
/
index.php
File metadata and controls
93 lines (84 loc) · 3.88 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
<?php
session_start();
$_SESSION['shoot']=0;
$_SESSION['loggedin']=0;
?>
<!DOCTYPE html>
<html>
<!-- some imports-->
<link rel="stylesheet" type="text/css" href="css/material.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="js/jQuery.js"></script>
<script type="text/javascript" src="js/material.min.js"></script>
<title>Voting System</title>
<head>
<link rel="shortcut icon" href="icon.png">
<!-- Uses a transparent header that draws on top of the layout's background -->
<style>
.demo-layout-transparent {
background: url('drawable/test.png') center / cover;
}
.demo-layout-transparent .mdl-layout__header,
.demo-layout-transparent .mdl-layout__drawer-button {
/* This background is dark, so we set text to white. Use 87% black instead if
your background is light. */
color: white;
}
</style>
<div class="demo-layout-transparent mdl-layout mdl-js-layout mdl-layout--fixed-tabs mdl-shadow--16dp" style="height: 200px">
<header class="mdl-layout__header mdl-layout__header--transparent mdl-shadow--16dp" >
<div class="mdl-layout__header-row">
<!-- Title -->
<span onclick="location.href='html/kappa.php'" style="cursor:pointer;" class="mdl-layout-title">NPS-HSR | Voting System | 2016-2017</span>
<!--NOTE: We will use a different image and change the color of the text in the header accordingly -->
<!-- Add spacer, to align navigation to the right -->
<div class="mdl-layout-spacer"></div>
<!-- Navigation -->
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="html/pass-page.php">Student Vote</a>
<a class="mdl-navigation__link" href="html/pass-paget.php">Teacher Vote</a>
<a class="mdl-navigation__link" href="html/pass-pagea.php">Add Details</a>
<a class="mdl-navigation__link" href="html/pass-pagev.php">View Results</a>
</nav>
</div>
</header>
<main class="mdl-layout__content">
</main>
</head>
</div>
<!-- Wide card with share menu button -->
<!-- Image card -->
<style>
.demo-card-image.mdl-card {
width: auto;
height: auto;
/* background: url('drawable/c1.jpg') center / cover; */
}
.demo-card-image >.mdl-card__actions {
height: 52px;
padding: 16px;
background: rgba(0, 0, 0, 0.2);
}
.demo-card-image__filename {
color: #fff;
font-size: 14px;
font-weight: 500;
}
</style>
<body>
<div id="parentu" style="padding-top: 150px;">
<div class="demo-card-image mdl-card mdl-shadow--16dp content mdl-js-ripple-effect" onclick="location.href='html/pass-paget.php'" style="background: url('../drawable/c1.jpg') center / contain; background-repeat:no-repeat;" id="select">
<div href="pass-page.php" class="mdl-card__title mdl-card--expand mdl-ripple"></div>
</div>
<div class="demo-card-image mdl-card mdl-shadow--16dp content mdl-js-ripple-effect" onclick="location.href='html/pass-page.php'" style="background: url('../drawable/c2.jpg') center / contain; background-repeat:no-repeat; margin-left: 20px; margin-right: auto;" id="select">
<div class="mdl-card__title mdl-card--expand mdl-ripple"></div>
</div>
</div>
<div id="parentu" style="padding-top: 20px; margin-bottom: 50px">
<div class="demo-card-image mdl-card mdl-shadow--16dp content mdl-js-ripple-effect" onclick="location.href='html/pass-pagea.php'" style="background: url('../drawable/c3.jpg') center / contain; background-repeat:no-repeat;" id="select">
<div class="mdl-card__title mdl-card--expand mdl-ripple"></div>
</div>
<div class="demo-card-image mdl-card mdl-shadow--16dp content mdl-js-ripple-effect" onclick="location.href='html/pass-pagev.php'" style="background: url('../drawable/c4.jpg') center / contain; background-repeat:no-repeat; margin-left: 20px; margin-right: auto;" id="select">
<div class="mdl-card__title mdl-card--expand mdl-ripple"></div>
</body>
</html>