-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.php
executable file
·54 lines (43 loc) · 1.32 KB
/
settings.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
46
47
48
49
50
51
52
53
54
<?php
session_start();
require_once 'classes/Util.php';
$util = new Util();
$util->validateAdmin();
?>
<!DOCTYPE html>
<html>
<head>
<title>Add Recipe - Recipes of the World</title>
<?php include_once('meta.php'); ?>
</head>
<body>
<?php include_once('header.php'); ?>
<section id="section1">
<?php include_once('_logout.php'); ?>
<div class="label" id="add-recipe-label">Admin Panel</div>
</section>
<section id="section4">
<?php include_once('_tag_pop_up.php'); ?>
<div id="add-recipe-form">
<table width="30%" cellpadding="20" cellspacing="20" border="0">
<tr>
<td>
<a href="add_admin.php">
<button class="very-large">Add New Admin</button>
</a>
</td>
</tr>
<tr>
<td>
<a href="categories.php">
<button class="very-large">Manage Categories</button>
</a>
</td>
</tr>
</table>
</div>
</section>
</body>
</html>
<script>
</script>