-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfull.html
More file actions
28 lines (27 loc) · 1.26 KB
/
full.html
File metadata and controls
28 lines (27 loc) · 1.26 KB
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
<div class="navbar" role="navigation" style="margin-bottom:0;width:100%;">
<div class="navbar-header">
<a class="navbar-brand" href="javascript:system.loadDefault();template.showLoad();">Video Converter</a>
</div>
<div class="menu">
<ul>
<li id="loginId"><a href="javascript:user.showLogin();template.showLoad();">Login</a></li>
<li class="registered" style="display:none;"><a href="javascript:vc.history();template.showLoad();">History</a></li>
<li class="registered" style="display:none;"><a href="javascript:vc.queue();template.showLoad();">Convert Queue</a></li>
<li class="registered" style="display:none;"><a href="javascript:vc.users();template.showLoad();">Users</a></li>
<li class="registered" style="display:none;"><a href="javascript:vc.upload();template.showLoad();">Upload Video</a></li>
<li id="logoutId" style="display:none;"><a href="javascript:user.logout();template.showLoad();">Logout</a></li>
</ul>
</div>
<div style="float:right;margin-right:20px;" id="ldbars"><img src="http://thumb.animecap.com/loadingbars.gif" /></div>
</div>
<div id="content"></div>
<script>
$(function(){
if(user.name!=""){
$("#logoutId a").html("Logout "+user.name);
$("#loginId").fadeOut();
$(".registered").fadeIn();
$("#logoutId").fadeIn();
}
});
</script>