-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.php
More file actions
42 lines (36 loc) · 863 Bytes
/
template.php
File metadata and controls
42 lines (36 loc) · 863 Bytes
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
<?php
session_start();
include 'api/functions.php';
$dbPath = $_SESSION['dbPath'];
?>
<!DOCTYPE html>
<html>
<head>
<title>
Kreegur - template
</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<link href="css/jquery-ui.css" rel="stylesheet">
<style>
body {
font-family:arial;
}
.myButtons{
min-width:100px;
}
td {
padding:5px;
}
</style>
</head>
<body>
<script src = "js/jquery-3.3.1.min.js"></script>
<script src = "js/jquery-ui.min.js"></script>
<script>
$(document).ready(function(){
alert("ready");
});
</script>
</body>
</html>