[hideprofile]
[html]
<div class="guest">
<div class="top-search">
<div class="search-icon"><i class="fa-solid fa-magnifying-glass"></i></div>
<div class="search-input">kakaotalk.rusff.me/hello</div>
</div>
<div class="content-columns">
<div class="left-col">
<div class="left-avatars">
<div class="ava-box ava-box1"></div>
<div class="ava-box ava-box2"></div>
</div>
<div class="left-buttons">
<a href="https://kakaotalk.rusff.me/viewtopic.php?id=3" class="link-btn">правила</a>
<a href="https://kakaotalk.rusff.me/viewtopic.php?id=18" class="link-btn">занятые внешности</a>
<a href="https://kakaotalk.rusff.me/viewtopic.php?id=16#p22" class="link-btn">нужные</a>
<a href="https://kakaotalk.rusff.me/viewtopic.php?id=25" class="link-btn">шаблон анкеты</a>
</div>
<div class="left-title">всем привет!</div>
<div class="left-text">
<b>Южная Корея, Сеул</b><br>мультилокация<br>
2025 год, NC17<br>
<br>бронь за профилями слетает в полночь по мск, за гостями и на подумать на сутки через 24 часа от оставленного в теме сообщения.
</div>
</div>
<div class="center-col">
<div class="main-banner"></div>
<div class="center-card">
<div class="gender-tabs">
<div class="tab">boys</div>
<div class="tab">girls</div>
</div>
<div class="gender-list">
<div class="two-lists">
<div class="list-column">
<div class="list-scroll">
<day>[ за амс ]</day>
bigbang - <a href="/profile.php?id=24">choi seunghyun</a><br>
cortis - <a href="/profile.php?id=7">james</a> - для <a href="https://kakaotalk.rusff.me/viewtopic.php?id=16#p37894">заявки</a><br>
monsta x - <a href="/profile.php?id=4"> im changkyun</a><br>
monsta x - <a href="/profile.php?id=8 ">chae hyungwon</a><br>
treasure - <a href="x">kanemoto yoshinori</a><br>
wayv - <a href="/profile.php?id=10">hendery</a><br>
nct – <a href="/profile.php?id=171"> lee taeyong</a><br>
&team - <a href="/profile.php?id=4">koga yudai</a><br>
nct - <a href="/profile.php?id=157">nakamoto yuta</a><br>
<day>[ до 08.04 ]</day>
astro - <a href="https://kakaotalk.rusff.me/profile.php?id=193">cha eunwoo</a><br>
actor - <a href="https://kakaotalk.rusff.me/profile.php?id=18">song kang</a><br>
<day>[ до 11.04 ]</day>
lykn - <a href="/profile.php?id=265">lego rapeepong</a><br>
</div>
</div>
<div class="list-column">
<div class="list-scroll">
<day>[ за амс ]</day>
aespa – <a href='#'>ning yizhuo</a><br>
meovv – <a href='#'>kim sooin</a><br>
meovv - <a href="/profile.php?id=171">ella gross</a><br>
solo - <a href="/profile.php?id=7">kim chungha</a><br>
<day>[ до 23.03 ]</day>
actress - <a href="/profile.php?id=274">kim hieora</a><br>
</div>
</div>
</div>
</div>
<div class="bottom-input-row reserve-row">
<input class="bottom-input reserve-group-input" placeholder="group">
<input class="bottom-input reserve-face-input" placeholder="внешность">
<button class="submit-btn reserve-btn" type="button">придержать</button>
</div>
</div>
</div>
<!-- RIGHT -->
<div class="right-col">
<div class="quickstart">
<div class="qs-title"><span class="qs-heart"><i class="fa-regular fa-heart"></i></span> Quick Start</div>
<ul class="qs-list">
<li>внешности держим 3 дня за профилями</li>
<li>2 раза можно продлить на 3 дня</li>
<li>с гостя или “на подумать” на сутки</li>
</ul>
</div>
<div class="right-avatars">
<div class="right-ava right-ava1"></div>
<div class="right-ava right-ava2"></div>
</div>
<div class="right-buttons">
<a href="https://kakaotalk.rusff.me/profile.php?id=4" class="right-btn">jo</a>
<a href="https://kakaotalk.rusff.me/profile.php?id=7" class="right-btn">ryujin</a>
<a href="https://kakaotalk.rusff.me/profile.php?id=8" class="right-btn"> hyuk</a>
<a href="https://kakaotalk.rusff.me/profile.php?id=9" class="right-btn">felix</a>
<a href="https://kakaotalk.rusff.me/profile.php?id=10" class="right-btn">minho</a>
<a href="https://kakaotalk.rusff.me/profile.php?id=6" class="right-btn">yeonjun</a>
<a href="https://kakaotalk.rusff.me/profile.php?id=171" class="right-btn">dani</a>
<a href='https://kakaotalk.rusff.me/profile.php?id=24' class="right-btn">bang chan</a>
</div>
</div>
</div>
<script>document.addEventListener("DOMContentLoaded", function () {
const groupInput = document.querySelector(".reserve-group-input");
const faceInput = document.querySelector(".reserve-face-input");
const btn = document.querySelector(".reserve-btn");
const replyArea = document.querySelector("#main-reply");
if (!groupInput || !faceInput || !btn || !replyArea) {
console.warn("Reserve-script: не найдены элементы формы.");
return;
}
btn.addEventListener("click", function () {
const groupVal = groupInput.value.trim();
const faceVal = faceInput.value.trim();
if (!groupVal || !faceVal) {
alert("Заполни оба поля.");
return;
}
let profileLink;
if (GroupID == 3 || !UserID) {
profileLink = "#";
} else {
profileLink = "/profile.php?id=" + UserID;
}
const result =
`[*code]${groupVal} - <a href='${profileLink}'>${faceVal}</a><br>[/code*]`;
replyArea.value += (replyArea.value ? "\n" : "") + result;
groupInput.value = "";
faceInput.value = "";
replyArea.focus();
});
});
</script>
[/html]
group – <a href='#'>name</a><br>





























































