This repository has been archived by the owner on Mar 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheker.php
45 lines (41 loc) · 1.51 KB
/
cheker.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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Config Checker</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.css">
<style type="text/css">
body{
background-color: #DADADA;
padding: 30px;
}
.button{
cursor:pointer;
}
</style>
</head>
<body class="">
<h1>Configurations checker</h1>
<p>This utility will check the configuration file and tell you if errors are found.</p>
<button id="startButton" class="ui primary button">Start check</button>
<div class="ui segment">
<div id="resultContainer" class="ui relaxed divided list">
</div>
</div>
<p> </p>
<script src="js/jquery_3.5.1.js"></script>
<script src="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.js"></script>
<script>
$("#startButton").click(function(){
$("#resultContainer").html('Loading.....');
$.ajax({
url: "cheker_script.php"
}).done(function(data){
$("#resultContainer").html(data);
});
});
</script>
</body>
</html>