-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalidate.php
More file actions
executable file
·23 lines (19 loc) · 874 Bytes
/
validate.php
File metadata and controls
executable file
·23 lines (19 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html><html><head>
<?php include'imports.php'?>
</head><body><center>
<!--sidebar--><?php include'sidebar.php'?>
<!--NAVBAR--><?php include"navbar.php"?>
<!--title--><h1><a href=development.php>Development</a> › Current JSON file</h1>
<!--form for json formatter-->
<form id=json_formatter action="https://jsonformatter.curiousconcept.com/process" method=POST>
<input name=jsondata type=hidden>
<input name=jsonstandard value=1 type=hidden>
<input name=jsontemplate value=1 type=hidden>
</form>
<button onclick=document.querySelector('#json_formatter').submit() style=margin-bottom:1em>Validate with JSON formatter</button>
<!--CURRENT JSON--><?php include'currentJSON.php'?>
<script>
updateResult();
document.querySelector('#currentJson').style.display="block"
document.querySelector('input[name=jsondata]').value=JSON.stringify(Global)
</script>