diff options
author | chai <chaifix@163.com> | 2022-03-18 23:38:15 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2022-03-18 23:38:15 +0800 |
commit | b970e38c6cbde1e573c1d7a1d1b1685c1ca5bde1 (patch) | |
tree | 1c61a26bf0970ce8fc0b2b11d547b926c403ef82 /admin_header.php | |
parent | f63d8e742f6f1cd0321acfd9ffcfd71afd6c956d (diff) |
*admin login
Diffstat (limited to 'admin_header.php')
-rw-r--r-- | admin_header.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/admin_header.php b/admin_header.php new file mode 100644 index 0000000..3ea71e4 --- /dev/null +++ b/admin_header.php @@ -0,0 +1,34 @@ + +<link rel="stylesheet" href="./res/admin.css"> + +<style type="text/css"> +#admin_header{ + height:auto; + margin-top:0; + margin-bottom: 10px; +} +#admin_header a{ + float:right; + color:black; + text-decoration: none; + font-size:12px; + padding: 5px; + margin-left: 5px; +} +#admin_header a:hover{ + color: white; + background: black; +} +</style> + +<div id="admin_header" style="width:100%;"> + <a href="logout.php">Logout</a> + <a href="admin.php" style="float:left;">Main</a> + <a href="admin.php" style="float:left;">Music</a> + <a href="admin.php" style="float:left;">Albums</a> + <a href="admin.php" style="float:left;">Tags</a> +<div style="clear:both"></div> + +</div> + +<div style="clear:both"></div> |