-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
31 lines (28 loc) · 1017 Bytes
/
gallery.html
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
<!doctype html>
<html>
<head>
<title>Gallery Editor</title>
<link rel="shortcut icon" href='img/icon.gif' />
<link rel='stylesheet' type='text/css' href='css/style.css'>
<script src='js/jquery.min.js' type='text/javascript' charset='utf-8'></script>
<script src='js/utils.js' type='text/javascript' charset='utf-8'></script>
<script src='js/gallery.js' type='text/javascript' charset='utf-8'></script>
</head>
<body>
<div class='toolbar'>
<img id='logo' src='img/icon.gif' />
<a href='news.html'>News</a>
<a href='tags.html'>Tags</a>
<a href='galleries.html'>Back To Galleries</a>
<a href='javascript:doLogout();'>Logout</a>
</div>
<h2>Gallery Editor</h2>
<div id='galleryDetails'></div>
<div id='newItemDiv'>
<button id='newButton'>New Image</button>
</div>
<div class='photos' id='content'>
</div>
</div>
<iframe name='uploadTarget'style='position:absolute; width:0px; height:0px; top:-32px; left:-32px;' onload='javascript:refresh();' />
</body>