-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit_tags.php
50 lines (49 loc) · 1.02 KB
/
edit_tags.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
<html lang='en'>
<?php
include ("tasti.inc") ;
$isAuthenticated=login_check();
?>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Tasti - Edit Tags</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
<script type="text/javascript">
function toggle(aId) {
var collection = document.getElementById(aId).getElementsByTagName("input");
for (var x=0; x<collection.length; x++) {
if (collection[x].type.toLowerCase() == "checkbox") {
if (collection[x].checked) {
collection[x].checked = false;
}
else {collection[x].checked = true}
}
}
}
</script>
</head>
<body>
<div id="wrapper">
<div id="header">
<?php
header0($isAuthenticated) ;
?>
</div>
<div id="faux">
<div id="leftcolumn">
<?php
account_mgmt() ;
?>
<div class="clear"></div>
</div>
<div id="rightcolumn">
<div class="clear"></div>
</div>
</div>
<div id="footer">
<?php
footer() ;
?>
</div>
</div>
</body>
</html>