-
Notifications
You must be signed in to change notification settings - Fork 0
/
feedback.php
143 lines (131 loc) · 5.92 KB
/
feedback.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="icon" href="favicon.ico" type="image/icon" sizes="16x16">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Quizzo | Feedback Page </title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/font.css">
<script src="js/jquery.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/bootstrap-theme.min.css"/>
<script src="js/bootstrap.min.js" type="text/javascript"></script>
<link href='http://fonts.googleapis.com/css?family=Roboto:400,700,300' rel='stylesheet' type='text/css'>
<?php
if (@$_GET['w']) {
echo '<script>alert("' . @$_GET['w'] . '");</script>';
}
?>
</head>
<body style="
font-family: sans-serif;
font-weight: 100;
background-image: url(https://raw.githubusercontent.com/kahanikaar/Project-EyT/master/20200712_031013_0000.png);
background-position: center left; background-repeat: no-repeat; background-attachment: fixed;
background-size: cover; ">
<div class="row header">
<div class="col-lg-6" style="margin-top:15px;">
<span class="logo">Quizzo | The Online Quiz Platform</span></div>
<div class="col-md-2">
</div>
<div class="col-md-4">
<?php
include_once 'dbConnection.php';
session_start();
if ((!isset($_SESSION['username']))) {
echo '<a href="#" class="pull-right logb btn btn-primary" data-toggle="modal" data-target="#myModal" style="color:white"><span class="glyphicon glyphicon-log-in" aria-hidden="true"></span> <font style="font-size:12px;font-weight:bold">Login</font></a> ';
} else {
echo '<a href="logout.php?q=feedback.php" class="pull-right logb btn btn-primary" style="color:white"><span class="glyphicon glyphicon-log-out" aria-hidden="true"></span> <font style="font-size:12px;font-weight:bold">Logout</font></a> ';
}
?>
<a href="index.php" class="pull-right btn logb btn-primary" style="color:white"><span class="glyphicon glyphicon-home" aria-hidden="true"></span> <font style="font-size:12px;font-weight:bold">Home</font></a>
</div></div>
<div class="modal fade" id="myModal">
<div class="modal-dialog">
<div class="modal-content title1">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title title1"><span style="color:darkblue;font-size:12px;font-weight:bold">Login to your Account</span></h4>
</div>
<div class="modal-body">
<form class="form-horizontal" action="login.php?q=index.php" method="POST">
<fieldset>
<div class="form-group">
<label class="col-md-3 control-label" for="username"></label>
<div class="col-md-6">
<input id="username" name="username" placeholder="Enter your username-id" class="form-control input-md" type="username">
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label" for="password"></label>
<div class="col-md-6">
<input id="password" name="password" placeholder="Enter your Password" class="form-control input-md" type="password">
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="submit" class="btn btn-primary">Login</button>
</fieldset>
</form>
</div>
</div>
</div>
</div>
<div class="bg1">
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-6 panel" style="background-image:url(image/bg1.jpg); min-height:430px;">
<h2 align="center" style="font-family:'sans-serif'; color:#000066">Feedback</h2>
<div style="font-size:14px;margin-top:20px"><br />
<?php
if (@$_GET['q'])
echo '<span style="font-size:18px;"><span class="glyphicon glyphicon-ok" aria-hidden="true"></span> ' . @$_GET['q'] . '</span>';
else {
echo '
<form role="form" method="post" action="feed.php?q=feedback.php">
<div class="row">
<div class="col-md-3"><b>Name:</b><br /><br /><br /><b>Subject:</b></div>
<div class="col-md-9">
<!-- Text input-->
<div class="form-group">
<input id="name" name="name" placeholder="Enter your name" class="form-control input-md" type="text"><br />
<input id="name" name="subject" placeholder="Enter short description of your feedback" class="form-control input-md" type="text">
</div>
</div>
</div><!--End of row-->
<div class="row">
<div class="col-md-3"><b>E-Mail ID:</b></div>
<div class="col-md-9">
<!-- Text input-->
<div class="form-group">
<input id="email" name="email" placeholder="Enter your e-mail" class="form-control input-md" type="email">
</div>
</div>
</div><!--End of row-->
<div class="form-group">
<textarea rows="5" cols="8" name="feedback" class="form-control" placeholder="Write feedback here. Keep it clean and simple."></textarea>
</div>
<div class="form-group" align="center">
<font style="font-size:12px;font-weight:bold"><input type="submit" name="submit" value="Send My Feedback" class="btn btn-primary" /></font>
</div>
</form>';
}
?>
</div>
<div class="col-md-3"></div></div>
</div></div>
</div>
<footer style="position:absolute; margin-top: 4%; height:3.5rem; width:100%; background-color: crimson; border-top: 2px solid white; text-align: center; bottom:0;">
<div class="row footer">
<div class="col-md-2 box"></div>
<div class="col-md-6 box">
<span href="#" data-target="#login" style="color:lightyellow">Created by Quizzo<br><br></span></div>
<div class="col-md-2 box">
<span href="feedback.php" style="color:lightyellow;text-decoration:underline" onmouseover="this.style('color:yellow')">Feedback</span></div>
<div class="col-md-2 box">
<a href="about.php" s style="color:lightyellow;text-decoration:underline" onmouseover="this.style('color:yellow')">About Quizzo</a></div>
</div>
</footer>
</body>
</html>