-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.php
More file actions
127 lines (109 loc) · 3.39 KB
/
dashboard.php
File metadata and controls
127 lines (109 loc) · 3.39 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<font color="white">
<center>
<h1>Dash Board</h1>
</center>
<div>
<style>
html {
background: url(https://delcon.net.au/wp-content/uploads/2018/10/question-mark-1872634_1280-862x474.jpg) no-repeat center fixed;
background-size: cover;
}
.block {
display: block;
width: 30%;
border: none;
background-color: #4CAF50;
color: white;
padding: 14px 28px;
font-size: 16px;
cursor: pointer;
text-align: center;
}
#wrapper{width:500%; height:400px; border:1px solid black;}
button{height:50px; position:relative; margin: 10px 60px; width:100x; top:50%; left:30%;}
.block:hover {
background-color: #ddd;
color: black;
}
.button-AllCompanyDetails,
.button-GetAllTopicsDetails,
.button-Selectallquestionsofacompany,
.button-Selectallquestionsofatopic,
.button-Selectwrtcompanyandtopic,
.button-Sortaccordtoquestiondiff,
.button-Sortaccordtoquestonfreq,
.button-Easyquestion,
.button-Diffqueston{
color: white;
border-radius: 10px;
text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}
.button-AllCompanyDetails{
background: rgb(28, 184, 65);
}
.button-GetAllTopicsDetails{
background: rgb(202, 60, 60);
}
.button-Selectallquestionsofacompany{
color: black;
background: rgb(255,255,0);
}
.button-Selectallquestionsofatopic{
background: rgb(0,128,128);
}
.button-Selectwrtcompanyandtopic{
background: rgb(128,128,0);
}
.button-Sortaccordtoquestiondiff{
color: black;
background: rgb(192,192,192);
}
.button-Sortaccordtoquestonfreq{
background: rgb(0,0,128);
}
.button-Easyquestion{
background: rgb(128,0,128);
}
.button-Diffqueston{
color: black;
background: rgb(255,0,255);
}
<h1>Dash Board</h1>
</head>
</style>
<form action="getcompanydetails.php" method="get">
<button type=submit class="button-AllCompanyDetails block">All Company Details</button>
</form>
<form action="gettopicdetails.php" method="get">
<button type=submit class="button-GetAllTopicsDetails block">Get All Topics Details</Button>
</form>
<form action="companyselect.php" method="get">
<button type=sumbit class="button-Selectallquestionsofacompany block">All Questions of a Company</Button>
</form>
<form action="topicselect.php" method="get">
<button type=submit class="button-Selectallquestionsofatopic block">All Questions of a Topic</Button>
</form>
<form action="companytopicselect.php" method="get">
<button type=submit class="button-Selectwrtcompanyandtopic block">Company and Topic</Button>
</form>
<form action="sortaccdifficulty.php" method="post">
<button type=submit class="button-Sortaccordtoquestiondiff block">Sort According to Question Difficulty</Button>
</form>
<form action="sortaccfrequency.php" method="post">
<button type=submit class="button-Sortaccordtoquestonfreq block">Sort According to Question Frequency</Button>
</form>
<form action="easyquestions.php" method="post">
<button type=submit class="button-Easyquestion block">Easy Question</Button>
</form>
<form action="difficultquestions.php" method="post">
<button type=submit class="button-Diffqueston block">Difficult Question</Button>
</form>
<form action="logout.php" method="post">
<button type=submit class="button-Logout block">LOG OUT</Button>
</form>
</div>
</html>