-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathloggedincaveat.html
More file actions
165 lines (147 loc) · 4.62 KB
/
loggedincaveat.html
File metadata and controls
165 lines (147 loc) · 4.62 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
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/box.css">
<link rel="stylesheet" type="text/css" href="css/menubar.css">
<link rel="stylesheet" type="text/css" href="css/pop.css">
<link rel="stylesheet" type="text/css" href="css/abtbody.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<style>
header
{
background-color:#191970;
padding: 1px;
font-size: 15px;
color: white;
}
footer {
background-color: #191970;
padding: 20px;
text-align: center;
color: white;
margin-top: 800px;
}
</style>
<style>
.drop1 {
padding: 16px;
font-size: 16px;
border: darkblue;
cursor: pointer;
}
.drop1:hover, .drop1:focus {
background-color: #2980B9;
}
.drop1 {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color:#191970;
min-width: 160px;
overflow: auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: white;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.drop1 a:hover {background-color: #ddd;}
.show {display: block;}
</style>
<title>Supreme Court Of India</title>
</head>
<header>
<center><a style="text-decoration:none;color:white" href="home.html"><h1>Supreme Court Of India</h1></a></center>
<center><h3>|| यतो धर्मस्ततो जयः ||</h3></center>
</header>
<div class="slideshow-container">
<div class="mySlides fade">
<img src="img/slide1.jpg" style="width:100%">
<div class="text"></div>
</div>
<div class="mySlides fade">
<img src="img/slide4.jpg" style="width:100%">
<div class="text"></div>
</div>
<div class="mySlides fade">
<img src="img/slide3.jpg" style="width:100%">
<div class="text"></div>
</div>
</div>
<br>
<div style="text-align:center">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
<script>
var slideIndex = 0;
showSlides();
function showSlides() {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex > slides.length) {slideIndex = 1}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
setTimeout(showSlides, 1000); // Change image every 2 seconds
}
</script>
<ul>
<li><a href="anc.html">Home</a></li>
<li><a href="anc.html">Notices & Circulars</a></li>
<li><a href="loggedinJV.php">Daily Orders</a></li>
<li><a href="loggedinef.php">E-Filled</a></li>
<li style="float:right"><a class="active" href="staffLogIn.html">Log Out</a></li>
</ul>
<body>
<div>
<div class="card">
<div class="header">
<h3>Quick Links</h3>
</div>
<div class="container">
<a rel="Click Here" style="text-decoration:none;" href="loggedinJudges.php"><h5>●Judges</h5></a>
<a rel="Click Here" style="text-decoration:none;" href="loggedinAdvocate.php"><h5>●Advocates</h5></a>
<a rel="Click Here" style="text-decoration:none;" href="loggedInCS.php"><h5>●Case Status</h5></a>
<a rel="Click Here" style="text-decoration:none;" href="loggedinJV.php"> <h5>●Judgements & Verdicts</h5></a>
<a rel="Click Here" style="text-decoration:none;color:red;" href="loggedincaveat.html"><h5>●Caveat</h5></a>
<a rel="Click Here" style="text-decoration:none" href="loggedinCourtfees.html"><h5>●Court Fees</h5></a>
</div>
</div>
<div class="desc">
<h2>Add Caveat</h2>
<hr>
<form action="cinsert.php" method="POST">
Caveat No:<input type="text" name="cno" required>
State Lower Court Information:<input type="text" name="slci" required>
Diary No:<input type="text" name="dno" required="">
Cause Title:<input type="text" name="ctitle" required="">
Petitioner's Advocate:<input type="text" name="pname" required="">
Respondent's Advocate:<input type="text" name="rname" required="">
Court Fee:<input type="text" name="cfees" required="">
<br><br>
<center><input type="submit"><br><br></center>
</form>
</div>
</div>
</div>
</body>
<footer>
<p>Government Of India ● 2018</p>
</footer>
</html>