Skip to content

Commit

Permalink
test warrant
Browse files Browse the repository at this point in the history
  • Loading branch information
RossMdevs committed Jul 19, 2023
1 parent 582b196 commit f62b0d5
Show file tree
Hide file tree
Showing 7 changed files with 216 additions and 20 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ <h1 class="display-4">North Carolina Department of Justice </h1>
</div>
</div>

<a href="records"> <button class="btn blue">Public DOJ Archive</button></a> <br> <br>
<a href="https://discord.gg/pY6GJKA6Vq"><button class="btn default">Information</button></a>
<a href="#"><button class="btn default">Our Team</button></a>
<a href="records"> <button class="btn blue">Civilian DOJ Archive</button></a> <br> <br>
<a href="https://discord.gg/pY6GJKA6Vq"><button class="btn default">Open a case, speak to a lawyer, request civil services.</button></a>
<!-- <a href="#"><button class="btn default">Our Team</button></a>-->


</div>
Expand Down
20 changes: 9 additions & 11 deletions records/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@
}
</style>
<div style="text-align: center;">
<p>Please continue by selecting the department or court with the records you wish to view.</p>
<a href="wsc"><button class="btn red">Wilmington Court: Public Records Division.</button></a>
<!-- <a href="lcsc"><button class="btn orange">Liberty County Superior Court</button></a> <br> <br>-->
<!-- <a href="dot"><button class="btn green">Department of Treasury</button></a>-->
<p>Access the system you wish by using the button(s) below.</p>
<a href="wsc"><button class="btn red">Civil Court Cases</button></a>
<a href="warrants"><button class="btn orange">Warrant Services Division</button></a>

</div>
<div class='cnt223'>
<h1>Dept. of Justice - Access Terminal Policy</h1>
<h1>Department of Justice - Civilian Access Notice</h1>
<p>
You are accessing a system provided by the <b>State Department of Justice office</b>. Access to this area is a <b>PRIVILEGE and not a RIGHT</b>. By accessing this are you are authorized to access select Intranet Record Areas. Access to any internal systems is granted on a <b> as-needed basis</b>. Sensitive/Classified material is not to be shared openly.

Expand Down Expand Up @@ -246,15 +246,13 @@ <h1>Dept. of Justice - Access Terminal Policy</h1>
}
</style>

<!-- Atlassian -->
<script data-jsd-embedded data-key="c0eae1b2-90d8-4993-a7c0-b7b693d13945" data-base-url="https://jsd-widget.atlassian.com" src="https://jsd-widget.atlassian.com/assets/embed.js"></script>

<!-- Meta Info -->
<meta property="og:title" content="Homepage">
<meta property="og:site_name" content="State of Liberty: Government">
<meta property="og:url" content=https://gov.newjersey.rp>
<meta property="og:description" content="The Official Website of the State of Liberty Government. Lookup archives, job opportunities, and other material.">
<meta property="og:image" content=https://government.libertystate.services/images/SGO-logo.png>
<meta property="og:site_name" content="North Carolina - Dept. of Justice Terminal">
<meta property="og:url" content=https://ncsrpdoj.github.io/web/>
<meta property="og:description" content="A civilian-accessable terminal to access data regarding cases in North Carolina.">
<meta property="og:image" content=https://ncsrpdoj.github.io/web/images/doj.png>

<style>
.blink_me {
Expand Down
91 changes: 91 additions & 0 deletions records/warrants/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Court Records - State Government Office</title>
<link rel="icon" href="/images/SGO-logo.png">
<style>
* {
box-sizing: border-box;
}

#myInput {
background-image: url('/css/searchicon.png');
background-position: 10px 10px;
background-repeat: no-repeat;
width: 100%;
font-size: 16px;
padding: 12px 20px 12px 40px;
border: 1px solid #ddd;
margin-bottom: 12px;
}

#myTable {
border-collapse: collapse;
width: 100%;
border: 1px solid #ddd;
font-size: 18px;
}

#myTable th, #myTable td {
text-align: left;
padding: 12px;
}

#myTable tr {
border-bottom: 1px solid #ddd;
}

#myTable tr.header, #myTable tr:hover {
background-color: #f1f1f1;
}
</style>
</head>
<body>

<h2>Records: Liberty County Superior Court</h2>
<p>All records of the state court can be viewed here. <a href="/records/index.html">Go back</a> <a href="/index.html">Return to Menu</a></p>

<input type="text" id="myInput" onkeyup="myFunction()" placeholder="Input the defendant's name.." title="Type in a name">

<table id="myTable">
<tr class="header">
<th style="width:32%;">Defendant's Name</th>
<th style="width:17%;">Type</th>
<th style="width:17%;">Status</th>
<th style="width:17%;">Judge</th>
<th style="width:17%;">Record ID</th>
</tr>
<tr>
<td><a href="/records/wsc/warrant-1-test.html">John Doe</a></td>
<td><a href="/records/wsc/warrant-1-test.html">Warrant</a></td>
<td><a href="/records/wsc/warrant-1-test.html">Served</a></td>
<td><a href="/records/wsc/warrant-1-test.html">Magistrate Shelome Natalyn</a></td>
<td><a href="/records/wsc/warrant-1-test.html">7474</a></td>
</tr>

</table>

<script>
function myFunction() {
var input, filter, table, tr, td, i, txtValue;
input = document.getElementById("myInput");
filter = input.value.toUpperCase();
table = document.getElementById("myTable");
tr = table.getElementsByTagName("tr");
for (i = 0; i < tr.length; i++) {
td = tr[i].getElementsByTagName("td")[0];
if (td) {
txtValue = td.textContent || td.innerText;
if (txtValue.toUpperCase().indexOf(filter) > -1) {
tr[i].style.display = "";
} else {
tr[i].style.display = "none";
}
}
}
}
</script>

</body>
</html>
77 changes: 77 additions & 0 deletions records/warrants/warrant-1-test.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>DOJ Warrant</title>

<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}

#myTable {
border-collapse: collapse;
width: 100%;
border: 1px solid #ddd;
font-size: 14px;
}

#myTable th, #myTable td {
text-align: left;
padding: 12px;
}

#myTable tr {
border-bottom: 1px solid #ddd;
}

#myTable tr.header, #myTable tr:hover {
background-color: #f1f1f1;
}
</style>
</head>
<h2>NCDOJ: CIRCUIT COURT WARRANT</h2>
<table id="myTable">
<tbody>
<tr style="height: 30px;">
<td style="width: 40%;"><h1>Last <b>known</b> photo of perpetrator.</h1> <br> <img src="https://i.imgur.com/zPB5bbp.png"></td>

</tr>
<tr style="height: 18px;">
<td style="width: 40%;">Individuals Name (L, F):</td>
<td style="width: 60%;">Doe, John (TEST)</td>
</tr>
<tr style="height: 18px;">
<td style="width: 40%;">Individuals Date of Birth:</td>
<td style="width: 60;">01/01/2002</td>
</tr>
<tr style="height: 18px;">
<td style="width: 40%;">Description:</td>
<td style="width: 60%;">White male</td>
</tr>
</tbody>
</table>
<h3>Reason for Warrant:</h3>
<ul>
<li>1st degree Murder</li>
<li>Unlawful Discharge of a firearm.</li>
<li>Intimidation</li>

<h3>Judicial Information:</h3>
<table id="myTable">
<tbody>
<tr style="height: 18px;">
<td style="width: 40%;">Judidical Officers name</td>
<td style="width: 60%;">Superior 2 Matt Vassner </td>
</tr>
<tr style="height: 18px;">
<td style="width: 40%;">Date Submitted:</td>
<td style="width: 60;">01/01/2002</td>
</tr>
<tr style="height: 18px;">
<td style="width: 40%;">Prosecuter Name:</td>
<td style="width: 60%;">PRS John Hamlett</td>
</tr>
</tbody>
</table>
</html>
Binary file added records/wsc/docs/warrant_test.pdf
Binary file not shown.
40 changes: 35 additions & 5 deletions records/wsc/warrant-1-test.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
}
</style>
</head>
<div class="alert">
<center> <h2> <strong>ALERT:</strong> Hutch, Jerry has X1 active ARREST Warrant. Please see the bottom warrant for further information.</h2> </center>
</div>
<h2>NCDOJ: CIRCUIT COURT WARRANT</h2>
<table id="myTable">
<tbody>
Expand All @@ -39,7 +42,7 @@ <h2>NCDOJ: CIRCUIT COURT WARRANT</h2>
</tr>
<tr style="height: 18px;">
<td style="width: 40%;">Individuals Name (L, F):</td>
<td style="width: 60%;">Doe, John (TEST)</td>
<td style="width: 60%;">Hutch, Jerry</td>
</tr>
<tr style="height: 18px;">
<td style="width: 40%;">Individuals Date of Birth:</td>
Expand All @@ -53,9 +56,10 @@ <h2>NCDOJ: CIRCUIT COURT WARRANT</h2>
</table>
<h3>Reason for Warrant:</h3>
<ul>
<li>1st degree Murder</li>
<li>Unlawful Discharge of a firearm.</li>
<li>Intimidation</li>
<li>1st degree Murder of a Public Servant Official.</li>
<li>Attempted Murder of a Public Servant Official.</li>
<li>Unlawful Imprisonment</li>
<li>Grand theft Auto</li>

<h3>Judicial Information:</h3>
<table id="myTable">
Expand All @@ -74,4 +78,30 @@ <h3>Judicial Information:</h3>
</tr>
</tbody>
</table>
</html>
<HR>
<h2><span style="color: red; ">ACTIVE WARRANT</span></H2>
<object data="docs/warrant_test.pdf" type="application/pdf" width="100%" height="500px">
<p>Unable to display PDF file. <a href="/uploads/media/default/0001/01/540cb75550adf33f281f29132dddd14fded85bfc.pdf">Download</a> instead.</p>
</object>


<style>.alert {
padding: 20px;
background-color: red;
color: white;
}

.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}

.closebtn:hover {
color: black;
}</style></html>
2 changes: 1 addition & 1 deletion src/console.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Creditary Material.
console.log('%c 👀 Site made w/ Vasek. I invision creating a service that caters to all and allows ease-of-use with gathering knowledge. You may contact me (the hostmaster) at webmaster.lsrp@rossmers.ch.', 'color: red; font-size: 12px;');
console.log('%c Site designed by Lmno (Matt Vassett | Ross M.). I envision creating services that cater to the masses. This includes an addressable system for civilian access. Reach me at: webmaster.ncdoj@rossmers.ch.', 'color: red; font-size: 12px;');
console.log('%c ', 'color: red; font-size: 12px;');
console.log(' ');

0 comments on commit f62b0d5

Please sign in to comment.