89 lines
2.9 KiB
HTML
89 lines
2.9 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Layout</title>
|
|
<link rel="stylesheet" type="text/css" href="./style/global.css" />
|
|
<link rel="stylesheet" type="text/css" href="./style/button.css" />
|
|
<link rel="stylesheet" type="text/css" href="./style/me.css" />
|
|
<link rel="stylesheet" type="text/css" href="./style/menu.css" />
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
|
|
|
|
<script type="text/javascript" src="./script/habboclient.js"></script>
|
|
<script type="text/javascript" src="./script/habboflashclient.js"></script>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
</head>
|
|
<body id="community">
|
|
<div class="center content round">
|
|
<div class="head">
|
|
<img src="./images/logo.png" alt="Logo" />
|
|
<div class="online"><b>0</b> Habbo's online now!</div>
|
|
</div>
|
|
|
|
<div class="menu round">
|
|
<ul>
|
|
<li><a href="./me.html">Me</a></li>
|
|
<li><a href="./staff.html">Staff</a></li>
|
|
<li><a href="./help.html">Help</a></li>
|
|
<li class="signout"><a href="./signout.html">Logout</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="user_info">
|
|
|
|
<div class="enterhotel">
|
|
<div class="ehbutton">
|
|
<a href="./client.html">Enter habbo hotel</a>
|
|
</div>
|
|
<b></b>
|
|
</div>
|
|
|
|
<div class="avatar">
|
|
<img src="http://www.habbo.com/habbo-imaging/avatarimage?figure=hd-180-1.ch-210-66.lg-270-82.sh-290-91.hr-100-&direction=4&head-direction=4&action=wav" alt="%username%" />
|
|
</div>
|
|
|
|
<div class="motto">
|
|
<span>%username%:</span>
|
|
<div id="motto">%motto%</div>
|
|
<div id="mottoEdit"><input type="text" maxlength="22" id="mottoEditBox" value="%motto%" /></div>
|
|
|
|
<script language="javascript">
|
|
(function($){
|
|
$(document).ready(function() {
|
|
$('.motto').click(function() {
|
|
$('.motto span').css("display", "none")
|
|
$('#motto').css("display", "none")
|
|
$('#mottoEdit').css("display", "block")
|
|
$('#mottoEditBox').focus()
|
|
return;
|
|
});
|
|
|
|
$('#mottoEditBox').blur(function() {
|
|
$('#mottoEdit').css("display", "none")
|
|
$.ajax({
|
|
url: "/system/functions/updatemotto.cfm?motto=" + $('#mottoEditBox').val(),
|
|
async: false
|
|
})
|
|
$('#motto').html($('#mottoEditBox').val())
|
|
$('#motto').css("display", "block")
|
|
$('.motto span').css("display", "block")
|
|
return;
|
|
});
|
|
});
|
|
})(jQuery);
|
|
</script>
|
|
</div>
|
|
|
|
<div class="balance">
|
|
<p class="credits"><b>0</b> Credits</p>
|
|
<p class="pixels"><b>0</b> Pixels</p>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="center copyright">
|
|
© PEjump & Joopie. 2011. All right reseverd.
|
|
</div>
|
|
</body>
|
|
</html> |