diff options
Diffstat (limited to 'admin_tags.php')
-rw-r--r-- | admin_tags.php | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/admin_tags.php b/admin_tags.php new file mode 100644 index 0000000..ce76dba --- /dev/null +++ b/admin_tags.php @@ -0,0 +1,57 @@ +<html> + +<head> +<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no, target-densityDpi=device-dpi"> +<style type="text/css"> +#container { + margin:0 auto; + max-width: 500px; +} +form .title { + display:block; + font-size:0.8em; + margin-bottom: 3px; +} +form .section{ + margin-bottom: 10px; + padding: 5px; + background: #efefef; +} +form .text { + width: 100%; +} +</style> + +</head> + +<body> + <div id="container"> + + <?php require_once 'utils.php';?> + <?php require_once 'config.php';?> + <?php require_once 'music.php';?> + <?php require_once 'admin_config.php';?> + <?php require_once 'admin_template.php';?> + + <?php + require_once('checkadmin.php'); + ?> + + <div style="height:auto;"> + <label class="admin-h1">Tags</label> + <div style="clear:both;"></div> + </div> + + <?php + $arr = fetch_all_tags(); + if($arr != null && count($arr) > 0){ + foreach($arr as $tag){ + html_admin_tag($tag); + } + } + ?> + + <div> + +</body> +</html>
\ No newline at end of file |