کد های css
کد های html
@hackarsham
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
<style type="text/css">
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
}
.form-container {
margin: 20px;
padding: 15px;
background: #173459;
color: white;
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3), 0 7px 21px 0 rgba(0, 0, 0, 0.20);
}
.input-cnt {
display: flex; /* display the icon and the input in a line */
margin-bottom: 15px;
}
.input-cnt:last-child {
margin-bottom: 0px;
}
.input-cnt > i {
min-width: 40px; /* set a minimum width for the icon */
padding: 10px; /* make sure the icon is centered vertically */
text-align: center; /* horizontally center the icon */
background: lightgrey;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
color: #0076ff;
}
/* change styles when focused */
.input-cnt:hover > i {
background: #0076ff;
color: white;
}
/* style the inputs */
.input-cnt > input[type="text"], .input-cnt > input[type="password"] {
outline: none;
border: none;
padding: 10px;
border: 1px solid lightgrey;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
width: 100%;
}
/* style the submit button */
.input-cnt > input[type="submit"] {
border: none;
border-radius: 20px;
outline: none;
width: 75%;
margin: 0 auto;
font-size: 105%;
padding: 8px;
color: #0076ff;
background: white;
transition-duration: .5s;
}
/* add a hover effect for the submit button */
.input-cnt > input[type="submit"]:hover {
color: white;
background: #0076ff;
}
</style>کد های html
<h2 style="text-align: center"> ثبت نام </h2>
<div class="form-container">
<form action="#">
<div class="input-cnt">
<i class="material-icons">person</i>
<input type="text" placeholder="نام" name="name" />
</div>
<div class="input-cnt">
<i class="material-icons">face</i>
<input type="text" placeholder="نام کاربری" name="username" />
</div>
<div class="input-cnt">
<i class="material-icons">email</i>
<input type="text" placeholder="ایمیل" name="email" />
</div>
<div class="input-cnt">
<i class="material-icons">lock</i>
<input type="password" placeholder="پسورد" name="password" />
</div>
<div class="input-cnt">
<input type="submit" value="ثبت" />
</div>
</form>
</div>
<h2 style="text-align: center"> ورود </h2>
<div class="form-container">
<form action="#">
<div class="input-cnt">
<i class="material-icons">person</i>
<input type="text" placeholder="ایمیل یا نام کاربری" name="email" />
</div>
<div class="input-cnt">
<i class="material-icons">lock</i>
<input type="password" placeholder="پسورد" name="password" />
</div>
<div class="input-cnt">
<input type="submit" value="ورود" />
</div>
</form>
</div>@hackarsham
❤2
هک | hack
تعدادی کارت خالی جهت افزودن به گوگل پلی یا... برای دریافت اشتراک رایگان برنامه ها (کارت ها خالیه و امکان برداشت نیست) 4957273646156701|07|2026|606|Visa 4957273601306572|08|2024|987|Visa 4957273653486538|02|2025|913|Visa 4957273683763666|03|2025|289|Visa…
تعدادی کارت خالی جهت افزودن به گوگل پلی یا... برای دریافت اشتراک رایگان برنامه ها (کارت ها خالیه و امکان برداشت نیست)
5522898810304050|01|2024|748|MasterCard
5522894557825753|10|2024|255|MasterCard
5522893734204320|12|2022|308|MasterCard
5522896508401600|07|2023|564|MasterCard
5522894705051245|03|2026|265|MasterCard
5522895641778338|06|2026|896|MasterCard
5522897608881170|05|2023|502|MasterCard
5522897107602721|06|2022|402|MasterCard
5522892586767285|05|2022|600|MasterCard
5522896273851211|02|2025|163|MasterCard
ترتیب :
شماره کارت ، تاریخ انقضا ، سی وی وی دو . رمز رو میتونید موقع ثبت هرچی انتخاب کنید
@hackarsham
5522898810304050|01|2024|748|MasterCard
5522894557825753|10|2024|255|MasterCard
5522893734204320|12|2022|308|MasterCard
5522896508401600|07|2023|564|MasterCard
5522894705051245|03|2026|265|MasterCard
5522895641778338|06|2026|896|MasterCard
5522897608881170|05|2023|502|MasterCard
5522897107602721|06|2022|402|MasterCard
5522892586767285|05|2022|600|MasterCard
5522896273851211|02|2025|163|MasterCard
ترتیب :
شماره کارت ، تاریخ انقضا ، سی وی وی دو . رمز رو میتونید موقع ثبت هرچی انتخاب کنید
@hackarsham
This media is not supported in your browser
VIEW IN TELEGRAM
کد باز و بسته کردن تصویر ، رنگ ، متن و...
<style type="text/css">
div#demo {
width: 300px;
height: 300px;
background: #173459;
opacity: 1; /* default */
display: block; /* default */
/* this will animate the element for 1
second when its properties change *
transition: all 1s;
}
</style>
👆👇
<div id="demo"></div>
<div>
<button onclick="fadeOut()"> بستن </button>
<button onclick="fadeIn()"> بازکردن </button>
</div>
<script>
function fadeOut() {
var elem = document.getElementById("demo");
elem.style.opacity = 0;
setTimeout(function() {
elem.style.display = "none";
}, 1000);
}
function fadeIn() {
var elem = document.getElementById("demo");
elem.style.display = "block";
// wait a little bit before setting opacity to 1
setTimeout(function() {
elem.style.opacity = 1;
}, 10);
}
</script>
@hackarsham`
<style type="text/css">
div#demo {
width: 300px;
height: 300px;
background: #173459;
opacity: 1; /* default */
display: block; /* default */
/* this will animate the element for 1
second when its properties change *
transition: all 1s;
}
</style>
👆👇
<div id="demo"></div>
<div>
<button onclick="fadeOut()"> بستن </button>
<button onclick="fadeIn()"> بازکردن </button>
</div>
<script>
function fadeOut() {
var elem = document.getElementById("demo");
elem.style.opacity = 0;
setTimeout(function() {
elem.style.display = "none";
}, 1000);
}
function fadeIn() {
var elem = document.getElementById("demo");
elem.style.display = "block";
// wait a little bit before setting opacity to 1
setTimeout(function() {
elem.style.opacity = 1;
}, 10);
}
</script>
@hackarsham`
👍4
کد های نرخ ، با قرار دادن این کد ها میتوانید اجناس یا.... هر چیز دیگه ای اسمش رو قرار بدید و یک قیمت به دلار یا ریال یا.... بزارید تا وقتی کاربر روی اسم اون کلیک میکنه براش قیمتش بیاد :
<label> یک میوه را انتخاب کنید
<select id="fruits" onchange="checkPrice()">
<option value="apple"> apple </option>
<option value="banana"> banana </option>
<option value="cherry"> cherry </option>
<option value="mango"> mango </option>
<option value="orange"> orange </option>
<option value="strawberry"> strawberry </option>
</select>
</label>
<p id="price"></p>
<script>
function checkPrice() {
var fruit = document.getElementById("fruits").value;
switch(fruit) {
case "apple":
var amount = "$1.92"
document.getElementById("price").innerHTML = "The price of " + fruit + " is " + amount;
break;
case "banana":
var amount = "$2.32"
document.getElementById("price").innerHTML = "The price of " + fruit + " is " + amount;
break;
case "mango":
var amount = "$3.11"
document.getElementById("price").innerHTML = "The price of " + fruit + " is " + amount;
break;
case "orange":
var amount = "$2.87"
document.getElementById("price").innerHTML = "The price of " + fruit + " is " + amount;
break;
default:
document.getElementById("price").innerHTML = "Sorry for the inconveniences, " + fruit + " is currently not available.";
}
}
</script>
@hackarsham
<label> یک میوه را انتخاب کنید
<select id="fruits" onchange="checkPrice()">
<option value="apple"> apple </option>
<option value="banana"> banana </option>
<option value="cherry"> cherry </option>
<option value="mango"> mango </option>
<option value="orange"> orange </option>
<option value="strawberry"> strawberry </option>
</select>
</label>
<p id="price"></p>
<script>
function checkPrice() {
var fruit = document.getElementById("fruits").value;
switch(fruit) {
case "apple":
var amount = "$1.92"
document.getElementById("price").innerHTML = "The price of " + fruit + " is " + amount;
break;
case "banana":
var amount = "$2.32"
document.getElementById("price").innerHTML = "The price of " + fruit + " is " + amount;
break;
case "mango":
var amount = "$3.11"
document.getElementById("price").innerHTML = "The price of " + fruit + " is " + amount;
break;
case "orange":
var amount = "$2.87"
document.getElementById("price").innerHTML = "The price of " + fruit + " is " + amount;
break;
default:
document.getElementById("price").innerHTML = "Sorry for the inconveniences, " + fruit + " is currently not available.";
}
}
</script>
@hackarsham
#فوری
هک شدن سایت دانشگاه امام صادق
«هیچوقت نمیبخشیم، هیچوقت فراموش نمیکنیم، خواهان عدالت هستیم. منتظر ما باشید»
#هک_کننده_نامشخص
@hackarsham
هک شدن سایت دانشگاه امام صادق
«هیچوقت نمیبخشیم، هیچوقت فراموش نمیکنیم، خواهان عدالت هستیم. منتظر ما باشید»
#هک_کننده_نامشخص
@hackarsham
تیکه کد صدور فاکتور پرداخت
مناسب برای ربات های شماره مجازی و سایر ربات های فروشگاهی
برای اینکه ربات پس از پرداخت های موفق کاربران شما را باخبر سازد کد زیر را در فایل back و در قسمت مربوط ب پرداخت های موفق قرار دهید
کد php:
if (پرداخت موفق){
sendMessage("$admin","
➖➖➖➖➖➖➖➖
✅ پرداخت موفق
? شناسه کاربر: $user
? مبلغ: $Amount
➖➖➖➖➖➖➖➖
");
}
@hackarsham
مناسب برای ربات های شماره مجازی و سایر ربات های فروشگاهی
برای اینکه ربات پس از پرداخت های موفق کاربران شما را باخبر سازد کد زیر را در فایل back و در قسمت مربوط ب پرداخت های موفق قرار دهید
کد php:
if (پرداخت موفق){
sendMessage("$admin","
➖➖➖➖➖➖➖➖
✅ پرداخت موفق
? شناسه کاربر: $user
? مبلغ: $Amount
➖➖➖➖➖➖➖➖
");
}
@hackarsham