mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 15:06:20 +00:00
checkpoint: secure assets and login flow baseline
This commit is contained in:
@@ -0,0 +1 @@
|
||||
(()=>{const h=()=>{try{const s=new URLSearchParams(location.search);return s.get("loaderDebug")==="1"||localStorage.getItem("nitro.loader.debug")==="1"}catch{return!1}},m=t=>{if(!h()){document.getElementById("nitro-loader-debug")?.remove();return}let n=document.getElementById("nitro-loader-debug");if(!n){n=document.createElement("div");n.id="nitro-loader-debug";n.style.cssText="position:fixed;left:8px;top:8px;z-index:2147483647;padding:6px 8px;max-width:70vw;background:rgba(0,0,0,.85);color:#fff;font:12px monospace;white-space:pre-wrap";document.body.appendChild(n)}n.textContent=t},n=()=>{const s=document.currentScript?.src||location.href;return new URL(".",s)},v=()=>{const r=document.getElementById("root");if(!r||r.firstChild)return;r.innerHTML='<div style="position:fixed;inset:0;background:#6eadc8;overflow:hidden;z-index:1"><img src="https://hotel.slogga.it/client/nitro/images/reception/background_gradient_apr25.png" style="position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center top" alt=""><img src="https://hotel.slogga.it/client/nitro/images/reception/mute_reception_backdrop_left.png" style="position:absolute;left:0;bottom:0;width:100%;height:100%;object-fit:none;object-position:left bottom" alt=""><img src="https://hotel.slogga.it/client/nitro/images/reception/background_right.png" style="position:absolute;right:0;bottom:0;width:400px;height:100%;object-fit:none;object-position:right bottom" alt=""><img src="https://hotel.slogga.it/client/nitro/images/reception/drape.png" style="position:absolute;left:0;top:0;width:190px;height:220px;object-fit:contain;object-position:left top" alt=""><div style="position:absolute;top:50%;right:8vw;transform:translateY(-50%);display:flex;flex-direction:column;gap:18px;width:260px"><div style="height:86px;background:#a2bfd1;border:2px solid #3f6a85;border-radius:8px;box-shadow:inset 0 2px rgba(255,255,255,.35),0 4px 6px rgba(0,0,0,.25)"></div><div style="height:190px;background:#a2bfd1;border:2px solid #3f6a85;border-radius:8px;box-shadow:inset 0 2px rgba(255,255,255,.35),0 4px 6px rgba(0,0,0,.25)"></div></div></div>'},k=new TextEncoder().encode("slogga-dist-assets-2026"),d=b=>{const o=new Uint8Array(b.length);for(let i=0;i<b.length;i++)o[i]=b[i]^k[i%k.length]^i*31&255;return o},z=async b=>{if(!("DecompressionStream" in self))throw new Error("gzip decompression unsupported");const s=new Blob([b]).stream().pipeThrough(new DecompressionStream("gzip"));return new Uint8Array(await new Response(s).arrayBuffer())},u=p=>{const b=n(),q=p.replace(/^\.\//,""),f=q.split("/").pop(),c=[new URL("./src/assets/"+f,b),new URL("./assets/"+f,b),new URL("/src/assets/"+f,b.origin),new URL("/assets/"+f,b.origin),new URL("/client/src/assets/"+f,b.origin),new URL("/client/assets/"+f,b.origin)];return[...new Map(c.map(x=>[x.href,x])).values()]},g=async p=>{let e=null;m("loader: fetching "+p);for(const a of u(p)){try{m("loader: try "+a.href);const r=await fetch(a,{cache:"no-store"});if(!r.ok){e=new Error("asset "+a.pathname+" "+r.status);continue}m("loader: ok "+a.href);return z(d(new Uint8Array(await r.arrayBuffer())))}catch(x){e=x}}throw e||new Error("asset "+p+" not found")},s=c=>{const l=document.createElement("style");l.textContent=new TextDecoder().decode(c);document.head.appendChild(l);m("loader: css injected")},j=async c=>{const u=URL.createObjectURL(new Blob([c],{type:"text/javascript"}));try{m("loader: importing app blob");await import(u);m("loader: app blob imported")}finally{URL.revokeObjectURL(u)}};(async()=>{m("loader: start");v();const[c,a]=await Promise.all([g("./assets/app.css.dat"),g("./assets/app.js.dat")]);s(c);await j(a)})().catch(e=>{console.error(e);m("loader: failed "+(e?.message||e));document.body.textContent="Unable to load client."})})();
|
||||
@@ -1,437 +0,0 @@
|
||||
<!doctype html>
|
||||
<html lang="it">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Nitro Current Messenger Mockup</title>
|
||||
<style>
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: #27313a;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.nitro-card-shell {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
border: 2px solid #000;
|
||||
border-radius: 10px;
|
||||
background: #f2f2eb;
|
||||
box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
|
||||
}
|
||||
|
||||
.nitro-card-header-shell {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 31px;
|
||||
max-height: 31px;
|
||||
border: 2px solid #3c88a6;
|
||||
border-bottom-color: #000;
|
||||
border-radius: 8px 8px 0 0;
|
||||
background: #30728c;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.nitro-card-title {
|
||||
margin: 0 auto;
|
||||
color: #fff;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.nitro-card-close-button {
|
||||
position: absolute;
|
||||
right: 8px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
min-width: 20px;
|
||||
border: 2px solid #000;
|
||||
border-radius: 4px;
|
||||
background: #bf2c2c;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.nitro-card-close-button::before,
|
||||
.nitro-card-close-button::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
width: 10px;
|
||||
height: 2px;
|
||||
border-radius: 2px;
|
||||
background: #fff;
|
||||
transform-origin: center;
|
||||
}
|
||||
|
||||
.nitro-card-close-button::before {
|
||||
transform: translate(-50%, -50%) rotate(45deg);
|
||||
}
|
||||
|
||||
.nitro-card-close-button::after {
|
||||
transform: translate(-50%, -50%) rotate(-45deg);
|
||||
}
|
||||
|
||||
.nitro-card-content-shell {
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.nitro-friends-messenger {
|
||||
width: 800px;
|
||||
height: 720px;
|
||||
}
|
||||
|
||||
.messenger-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 4fr 8fr;
|
||||
gap: 8px;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.messenger-column {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
min-height: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.messenger-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.layout-grid-item {
|
||||
position: relative;
|
||||
min-height: 50px;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid #7f8b94;
|
||||
border-radius: 4px;
|
||||
background: #d9e4ea;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.layout-grid-item.active {
|
||||
background: #f7fbff;
|
||||
box-shadow: inset 0 0 0 2px #4d9fc7;
|
||||
}
|
||||
|
||||
.layout-item-count {
|
||||
position: absolute;
|
||||
right: 4px;
|
||||
top: 4px;
|
||||
min-width: 18px;
|
||||
padding: 1px 4px;
|
||||
border-radius: 9px;
|
||||
background: #f2d64b;
|
||||
color: #000;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.friend-row {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
gap: 4px;
|
||||
min-height: 50px;
|
||||
}
|
||||
|
||||
.avatar-head {
|
||||
position: relative;
|
||||
width: 50px;
|
||||
height: 80px;
|
||||
flex-shrink: 0;
|
||||
align-self: flex-end;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.avatar-head img {
|
||||
position: absolute;
|
||||
left: -16px;
|
||||
top: -13px;
|
||||
width: 64px;
|
||||
height: auto;
|
||||
image-rendering: auto;
|
||||
}
|
||||
|
||||
.friend-name {
|
||||
align-self: center;
|
||||
min-width: 0;
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.active-thread-title {
|
||||
text-align: center;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.actions-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.actions-left {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.button {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 28px;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid #1e7295;
|
||||
border-radius: 4px;
|
||||
background: #1e7295;
|
||||
color: #fff;
|
||||
font-size: 12px;
|
||||
cursor: pointer;
|
||||
box-shadow: inset 0 2px rgba(255,255,255,.15), inset 0 -2px rgba(0,0,0,.10), 0 1px rgba(0,0,0,.10);
|
||||
}
|
||||
|
||||
.button.danger {
|
||||
border-color: #a81a12;
|
||||
background: #a81a12;
|
||||
}
|
||||
|
||||
.button.success {
|
||||
border-color: #00800b;
|
||||
background: #00800b;
|
||||
}
|
||||
|
||||
.mini-icon {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border-radius: 3px;
|
||||
background: rgba(255,255,255,.25);
|
||||
}
|
||||
|
||||
.chat-messages {
|
||||
flex: 1;
|
||||
min-height: 0;
|
||||
overflow-y: auto;
|
||||
padding: 8px;
|
||||
border-radius: 4px;
|
||||
background: #cfd7dd;
|
||||
}
|
||||
|
||||
.thread-group {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
gap: 8px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.thread-group.own {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.message-avatar {
|
||||
position: relative;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
flex-shrink: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.message-avatar img {
|
||||
position: absolute;
|
||||
left: -19px;
|
||||
top: -22px;
|
||||
width: 72px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.message-bubble {
|
||||
position: relative;
|
||||
max-width: 420px;
|
||||
margin-bottom: 8px;
|
||||
padding: 4px 8px;
|
||||
border-radius: 4px;
|
||||
background: #dfdfdf;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
.message-bubble.left::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
left: -8px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-right: 8px solid #dfdfdf;
|
||||
border-top: 8px solid transparent;
|
||||
border-bottom: 8px solid transparent;
|
||||
}
|
||||
|
||||
.message-bubble.right::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
right: -8px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
border-left: 8px solid #dfdfdf;
|
||||
border-top: 8px solid transparent;
|
||||
border-bottom: 8px solid transparent;
|
||||
}
|
||||
|
||||
.message-header {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.message-time {
|
||||
color: #6b7280;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
.message-line {
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.input-row {
|
||||
display: flex;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.input-row input {
|
||||
flex: 1;
|
||||
min-height: 28px;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid #9aa6ad;
|
||||
border-radius: 4px;
|
||||
outline: none;
|
||||
font-size: 13px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="nitro-card-shell nitro-friends-messenger">
|
||||
<div class="nitro-card-header-shell">
|
||||
<span class="nitro-card-title">Le tue chat aperte (2)</span>
|
||||
<div class="nitro-card-close-button"></div>
|
||||
</div>
|
||||
|
||||
<div class="nitro-card-content-shell">
|
||||
<div class="messenger-grid">
|
||||
<div class="messenger-column">
|
||||
<div class="section-title">Messenger</div>
|
||||
<div class="messenger-list">
|
||||
<div class="layout-grid-item active">
|
||||
<div class="layout-item-count">1</div>
|
||||
<div class="friend-row">
|
||||
<div class="avatar-head">
|
||||
<img alt="Jarchy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-831-45.hd-180-1.ch-255-92.lg-275-82.sh-290-92&direction=2&head_direction=2&headonly=1&size=l">
|
||||
</div>
|
||||
<div class="friend-name">Jarchy</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layout-grid-item">
|
||||
<div class="friend-row">
|
||||
<div class="avatar-head">
|
||||
<img alt=",Homy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=ha-3409-1413-70.lg-285-89.ch-3032-1334-109.sh-3016-110.hd-185-1359.ca-3225-110-62.wa-3264-62-62.fa-1206-90.hr-3322-1403&direction=2&head_direction=2&headonly=1&size=l">
|
||||
</div>
|
||||
<div class="friend-name">,Homy</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="messenger-column">
|
||||
<div class="active-thread-title">Tu + Jarchy</div>
|
||||
|
||||
<div class="actions-row">
|
||||
<div class="actions-left">
|
||||
<button class="button"><span class="mini-icon"></span></button>
|
||||
<button class="button"><span class="mini-icon"></span></button>
|
||||
<button class="button danger">Denuncia</button>
|
||||
</div>
|
||||
<button class="button">×</button>
|
||||
</div>
|
||||
|
||||
<div class="chat-messages">
|
||||
<div class="thread-group">
|
||||
<div class="message-avatar">
|
||||
<img alt="Jarchy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-831-45.hd-180-1.ch-255-92.lg-275-82.sh-290-92&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
<div>
|
||||
<div class="message-bubble left">
|
||||
<div class="message-header">Jarchy</div>
|
||||
<div class="message-line">dddove sei?</div>
|
||||
</div>
|
||||
<div class="message-time">7 ore fa</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="thread-group own">
|
||||
<div>
|
||||
<div class="message-bubble right">
|
||||
<div class="message-header">Tu</div>
|
||||
<div class="message-line">su</div>
|
||||
<div class="message-line">slogga</div>
|
||||
<div class="message-line">vieni li</div>
|
||||
</div>
|
||||
<div class="message-time">6 ore fa</div>
|
||||
</div>
|
||||
<div class="message-avatar own">
|
||||
<img alt="Tu" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=ha-3409-1413-70.lg-285-89.ch-3032-1334-109.sh-3016-110.hd-185-1359.ca-3225-110-62.wa-3264-62-62.fa-1206-90.hr-3322-1403&direction=4&head_direction=4&size=l">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="thread-group">
|
||||
<div class="message-avatar">
|
||||
<img alt="Jarchy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-831-45.hd-180-1.ch-255-92.lg-275-82.sh-290-92&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
<div>
|
||||
<div class="message-bubble left">
|
||||
<div class="message-header">Jarchy</div>
|
||||
<div class="message-line">arrivo</div>
|
||||
</div>
|
||||
<div class="message-time">6 ore fa</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="input-row">
|
||||
<input value="" placeholder="Fai clic qui per scrivere a Jarchy">
|
||||
<button class="button success">Parla</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,116 +0,0 @@
|
||||
|
||||
<style>
|
||||
*{box-sizing:border-box;margin:0;padding:0;}
|
||||
.root{display:flex;justify-content:center;padding:1.5rem 0;font-family:Arial,Helvetica,sans-serif;}
|
||||
.card{width:332px;height:445px;display:flex;flex-direction:column;border:2px solid #000;border-radius:10px;overflow:hidden;background:#f2f2eb;box-shadow:0 6px 20px rgba(0,0,0,.25);}
|
||||
.hdr{display:flex;align-items:center;justify-content:space-between;padding:0 8px;min-height:30px;background:#30728c;border-bottom:1px solid #000;flex-shrink:0;}
|
||||
.hdr-title{color:#fff;font-size:13px;}
|
||||
.hdr-min{width:18px;height:18px;border:2px solid #000;border-radius:3px;background:#bbb;cursor:pointer;display:flex;align-items:center;justify-content:center;}
|
||||
.hdr-min::after{content:"";width:8px;height:2px;background:#555;display:block;}
|
||||
.avatar-bar{display:flex;gap:4px;padding:6px 8px;border-bottom:1px solid #000;background:#d9e4ea;flex-shrink:0;overflow-x:auto;}
|
||||
.av-item{width:36px;height:36px;border:2px solid #7f8b94;border-radius:4px;background:#c0cdd5;overflow:hidden;position:relative;cursor:pointer;flex-shrink:0;}
|
||||
.av-item.active{border-color:#1e7295;box-shadow:0 0 0 1px #1e7295;}
|
||||
.av-item img{position:absolute;left:50%;top:50%;transform:translate(-50%,-62%) scale(0.65);width:64px;}
|
||||
.av-badge{position:absolute;top:-3px;right:-3px;min-width:12px;height:12px;border-radius:6px;background:#f2d64b;border:1px solid #000;font-size:8px;font-weight:700;color:#000;display:flex;align-items:center;justify-content:center;padding:0 2px;}
|
||||
.thread-hdr{display:flex;align-items:center;justify-content:space-between;padding:4px 8px;border-bottom:1px solid #000;flex-shrink:0;background:#e8eef2;}
|
||||
.thread-name{font-size:12px;font-weight:700;color:#000;}
|
||||
.acts{display:flex;gap:4px;align-items:center;}
|
||||
.btn{display:inline-flex;align-items:center;justify-content:center;height:22px;padding:0 7px;border:1px solid #1e7295;border-radius:3px;background:#1e7295;color:#fff;font-size:11px;cursor:pointer;}
|
||||
.btn.danger{border-color:#a81a12;background:#a81a12;}
|
||||
.btn.close-btn{border-color:#888;background:#ccc;color:#000;font-size:13px;padding:0 5px;}
|
||||
.btn.icon-btn{width:22px;padding:0;}
|
||||
.icon-sq{width:10px;height:10px;background:rgba(255,255,255,.35);border-radius:1px;display:block;}
|
||||
.messages{flex:1;min-height:0;overflow-y:auto;padding:8px;background:#cfd7dd;display:flex;flex-direction:column;gap:8px;}
|
||||
.msg-row{display:flex;gap:6px;align-items:flex-start;}
|
||||
.msg-row.own{flex-direction:row-reverse;}
|
||||
.msg-av{width:40px;height:52px;flex-shrink:0;position:relative;overflow:hidden;}
|
||||
.msg-av img{position:absolute;left:50%;top:0;transform:translateX(-50%);width:64px;}
|
||||
.msg-body{display:flex;flex-direction:column;gap:2px;max-width:200px;}
|
||||
.bubble{background:#dfdfdf;border:1px solid #bbb;border-radius:3px;padding:4px 7px;font-size:12px;line-height:1.4;color:#000;position:relative;}
|
||||
.bubble.left::before{content:"";position:absolute;top:10px;left:-7px;border:6px solid transparent;border-right-color:#bbb;}
|
||||
.bubble.left::after{content:"";position:absolute;top:10px;left:-5px;border:5px solid transparent;border-right-color:#dfdfdf;}
|
||||
.bubble.right::before{content:"";position:absolute;top:10px;right:-7px;border:6px solid transparent;border-left-color:#bbb;}
|
||||
.bubble.right::after{content:"";position:absolute;top:10px;right:-5px;border:5px solid transparent;border-left-color:#dfdfdf;}
|
||||
.msg-time{font-size:10px;color:#666;}
|
||||
.msg-row.own .msg-time{text-align:right;}
|
||||
.input-row{display:flex;gap:5px;padding:6px 8px;border-top:1px solid #000;background:#e8eef2;flex-shrink:0;align-items:center;}
|
||||
.input-row input{flex:1;height:26px;border:1px solid #9aa6ad;border-radius:3px;padding:0 7px;font-size:12px;background:#fff;outline:none;}
|
||||
.btn.send{border-color:#00800b;background:#00800b;}
|
||||
</style>
|
||||
<div class="root">
|
||||
<div class="card">
|
||||
<div class="hdr">
|
||||
<span class="hdr-title">Le tue chat aperte (7)</span>
|
||||
<div class="hdr-min"></div>
|
||||
</div>
|
||||
|
||||
<div class="avatar-bar">
|
||||
<div class="av-item active" style="position:relative;">
|
||||
<img alt="Jarchy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-831-45.hd-180-1.ch-255-92.lg-275-82.sh-290-92&direction=2&head_direction=2&size=l">
|
||||
<span class="av-badge">1</span>
|
||||
</div>
|
||||
<div class="av-item">
|
||||
<img alt=",Homy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=ha-3409-1413-70.lg-285-89.ch-3032-1334-109.sh-3016-110.hd-185-1359.ca-3225-110-62.wa-3264-62-62.fa-1206-90.hr-3322-1403&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
<div class="av-item">
|
||||
<img alt="u3" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hd-180-1.ch-215-62.lg-280-110&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
<div class="av-item">
|
||||
<img alt="u4" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hd-3096-1370.ch-3030-110.lg-3023-110&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
<div class="av-item">
|
||||
<img alt="u5" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hd-180-3.ch-210-66.lg-270-82&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
<div class="av-item">
|
||||
<img alt="u6" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hd-185-10.ch-220-1338.lg-275-110&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
<div class="av-item">
|
||||
<img alt="u7" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hd-180-2.ch-230-62.lg-285-110&direction=2&head_direction=2&size=l">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="thread-hdr">
|
||||
<span class="thread-name">Tu + Jarchy</span>
|
||||
<div class="acts">
|
||||
<button class="btn icon-btn"><span class="icon-sq"></span></button>
|
||||
<button class="btn icon-btn"><span class="icon-sq"></span></button>
|
||||
<button class="btn danger">Denuncia</button>
|
||||
<button class="btn close-btn">×</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="messages">
|
||||
<div class="msg-row">
|
||||
<div class="msg-av"><img alt="Jarchy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-831-45.hd-180-1.ch-255-92.lg-275-82.sh-290-92&direction=2&head_direction=2&size=l"></div>
|
||||
<div class="msg-body">
|
||||
<div style="font-size:11px;font-weight:700;color:#000;">Jarchy:</div>
|
||||
<div class="bubble left">dddove sei?</div>
|
||||
<div class="msg-time">7 ore fa</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="msg-row own">
|
||||
<div class="msg-av"><img alt="Tu" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=ha-3409-1413-70.lg-285-89.ch-3032-1334-109.sh-3016-110.hd-185-1359.ca-3225-110-62.wa-3264-62-62.fa-1206-90.hr-3322-1403&direction=4&head_direction=4&size=l"></div>
|
||||
<div class="msg-body">
|
||||
<div style="font-size:11px;font-weight:700;color:#000;text-align:right;">,Homy:</div>
|
||||
<div class="bubble right">su<br>slogga<br>vieni li</div>
|
||||
<div class="msg-time">7 ore fa</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="msg-row">
|
||||
<div class="msg-av"><img alt="Jarchy" src="https://www.habbo.com/habbo-imaging/avatarimage?figure=hr-831-45.hd-180-1.ch-255-92.lg-275-82.sh-290-92&direction=2&head_direction=2&size=l"></div>
|
||||
<div class="msg-body">
|
||||
<div style="font-size:11px;font-weight:700;color:#000;">Jarchy:</div>
|
||||
<div class="bubble left">arrivo</div>
|
||||
<div class="msg-time">7 ore fa</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="input-row">
|
||||
<input placeholder="Fai clic qui per scrivere a Jarchy" type="text">
|
||||
<button class="btn send">Parla</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"socket.url": "wss://nitro.slogga.it:2096",
|
||||
"api.url": "https://nitro.slogga.it:2096",
|
||||
"asset.url": "https://client.slogga.it/nitro/bundled",
|
||||
"image.library.url": "https://client.slogga.it/c_images/",
|
||||
"hof.furni.url": "https://client.slogga.it/c_images/dcr/hof_furni",
|
||||
"images.url": "https://client.slogga.it/nitro/images",
|
||||
"gamedata.url": "https://client.slogga.it/nitro/gamedata",
|
||||
"asset.url": "https://hotel.slogga.it/client/nitro/bundled",
|
||||
"image.library.url": "https://hotel.slogga.it/client/c_images/",
|
||||
"hof.furni.url": "https://hotel.slogga.it/client/c_images/dcr/hof_furni",
|
||||
"images.url": "https://hotel.slogga.it/client/nitro/images",
|
||||
"gamedata.url": "https://nitro.slogga.it:2096/nitro-sec/file?kind=gamedata&file=",
|
||||
"sounds.url": "${asset.url}/sounds/%sample%.mp3",
|
||||
"external.texts.url": [
|
||||
"${gamedata.url}/ExternalTexts.json",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user