-
Notifications
You must be signed in to change notification settings - Fork 32
/
adminpanel.php
322 lines (280 loc) · 8.69 KB
/
adminpanel.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
<!DOCTYPE html>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
.adpg
{
background: url('back1.jpg') no-repeat;
width:100%;
height: 100%;
}
.mouse
{
transform: rotate(90deg);
background-color: black;
}
.price-table:hover
{
box-shadow: 5px 5px 5px lightgrey, -5px 0px 5px lightgrey;
}
.dashboard
{
background-color:#333399;
color:white;
width:25%;
font-family: serif;
padding: 10px;
border-radius: 10px;
box-shadow: 5px 5px 5px black, -5px 0px 5px black;
}
.dashboard:hover
{
transform: translateY(5px);
}
.adminimage
{
border-radius: 50%;
}
.adminhead
{
text-align: center;
color: white;
background-color: #000066;
width:100%;
height:40px;
font-weight: bolder;
font-size: 25px;
}
.modal-header
{
background-color:#5FCF80;
}
.links
{
background: #000066;
color:white;
border:2px solid #333399;
height:50px;
width:100%;
border-radius: 10px;
}
.links:hover
{
background: #333399;
font-size: 15px;
border: 2px solid #000066;
}
.links1
{
background: #000066;
color:white;
border:2px solid #333399;
height:50px;
width:100%;
border-radius: 5%;
margin-left: 50px;
margin-top: 50px;
}
.links1:hover
{
background: #333399;
border: 2px solid #000066;
}
.dash1
{
float: left;
}
.dash2
{
float: right;
position: absolute;
top:75px;
right: 90px;
}
.mybutton {
border-radius: 0px 40px 40px 0px;
background-color: #5FCF80;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 28px;
padding: 10px;
width: 200px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
}
.mybutton span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.mybutton span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.mybutton:hover span {
padding-right: 25px;
}
.mybutton:hover span:after {
opacity: 1;
right: 0;
}
</style>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>learntocode.com</title>
<meta name="description" content="Free Bootstrap Theme by BootstrapMade.com">
<meta name="keywords" content="free website templates, free bootstrap themes, free template, free bootstrap, free website template">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Open+Sans|Candal|Alegreya+Sans">
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/imagehover.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- =======================================================
Theme Name: Mentor
Theme URL: https://bootstrapmade.com/mentor-free-education-bootstrap-theme/
Author: BootstrapMade.com
Author URL: https://bootstrapmade.com
======================================================= -->
</head>
<body>
<!--Navigation bar-->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><span> Learn to Code</span></a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#feature">Features</a></li>
<li><a href="#organisations">Organisations</a></li>
<li><a href="#courses">Courses</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#" data-target="#login" data-toggle="modal">Log in</a></li>
<li class="btn-trial"><a href="#" data-target="#signin" data-toggle="modal">Sign in</a></li>
</ul>
</div>
</div>
</nav>
<!--/ Navigation bar--><br><br>
<div class="adpg">
<br><br>
<div class="dash1">
<form action="adsuggestion.php" method="get">
<input type="submit" value="Suggestions from authenticated users" class="links1">
</form>
<br>
<form action="admessage.php" method="get">
<input type="submit" value="Messages from non-authenticated users" class="links1">
</form>
<br>
<form action="adpayment.php" method="get">
<input type="submit" value="Course payment detials" class="links1">
</form>
<form action="adpayment.php" method="get">
<input type="submit" value="Course payment detials" class="links1">
</form>
</div>
<center>
<div class="dashboard">
<div class="adminhead">ADMIN-PANEL</div><br>
<center>
<img src="amol.jpg" class="adminimage img-responsive"></center>
<hr>
<div style="line-height:0px;">
<form action="adsuggestion.php" method="get">
<input type="submit" value="Suggestions from authenticated users" class="links">
</form>
<br>
<form action="admessage.php" method="get">
<input type="submit" value="Messages from non-authenticated users" class="links">
</form>
<br>
<form action="adpayment.php" method="get">
<input type="submit" value="Course payment detials" class="links"s>
</form>
</div>
</div>
</center>
<div class="dash2">
<form action="adsuggestion.php" method="get">
<input type="submit" value="Suggestions from authenticated users" class="links1">
</form>
<br>
<form action="admessage.php" method="get">
<input type="submit" value="Messages from non-authenticated users" class="links1">
</form>
<br>
<form action="adpayment.php" method="get">
<input type="submit" value="Course payment detials" class="links1">
</form>
<form action="adpayment.php" method="get">
<input type="submit" value="Course payment detials" class="links1">
</form>
</div>
<br><br><br><br>
</div>
<!--Footer-->
<footer id="footer" class="footer">
<div class="container text-center">
<h3>Suggestions Are Welcomed</h3>
<form class="mc-trial row" action="review.php" method="get">
<div class="form-group col-md-3 col-md-offset-2 col-sm-4">
<div class=" controls">
<input name="username" placeholder="Enter Your FullName" class="form-control" type="text">
</div>
</div>
<!-- End email input -->
<div class="form-group col-md-3 col-sm-4">
<div class=" controls">
<input name="comment" placeholder="Enter Your Suggestion" class="form-control" type="text">
</div>
</div>
<!-- End email input -->
<div class="col-md-2 col-sm-4">
<p>
<button name="submit" type="submit" class="btn btn-block btn-submit">
Suggest this! <i class="fa fa-arrow-right"></i></button>
</p>
</div>
</form>
<!-- End newsletter-form -->
<ul class="social-links">
<li><a href="#link"><i class="fa fa-twitter fa-fw"></i></a></li>
<li><a href="#link"><i class="fa fa-facebook fa-fw"></i></a></li>
<li><a href="#link"><i class="fa fa-google-plus fa-fw"></i></a></li>
<li><a href="#link"><i class="fa fa-dribbble fa-fw"></i></a></li>
<li><a href="#link"><i class="fa fa-linkedin fa-fw"></i></a></li>
</ul>
©2016 Learn To Code All rights reserved
<div class="credits">
<!--
All the links in the footer should remain intact.
You can delete the links only if you purchased the pro version.
Licensing information: https://bootstrapmade.com/license/
Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/buy/?theme=Mentor
-->
Designed by <a href="https://amoldalwai.com/">Amol Dalwai</a>
</div>
</div>
</footer>
</body>