ANYmail / index.html
zenjoul80's picture
Upload 3 files
18fd292 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gmail Bomber</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/remixicon@4.5.0/fonts/remixicon.css" rel="stylesheet" />
</head>
<body>
<!-- Window 1 -->
<div class="window1">
<div class="header-w1">
<span>HAWA</span>
<button onclick="w1_close()">
<i class="ri-close-line"></i>
</button>
</div>
<div class="content-w1">
<p>Email Bomber tool by <mark>HAWA</mark>:
Send mass emails instantly to flood inboxes.
Use responsibly.</p>
<button onclick="w2_open()">Start</button>
</div>
</div>
<!-- Window 1 -->
<div class="window2">
<div class="header-w2">
<span>Gmail Bomber</span>
<div class="actions">
<button class="minimize" onclick="w2_minimize()"></button>
<button class="close" onclick="w2_close()">
<i class="ri-close-line"></i>
</button>
</div>
</div>
<div class="content-w2">
<input type="email" id="gmail" placeholder="Email Address" required="">
<input type="number" id="counter" value="10" required="">
<form method="POST">
<input type="hidden" name="_captcha" value="false">
<input type="text" name="_subject" placeholder="Subject" required="">
<input type="text" name="message" placeholder="Type Message..." required="">
<input type="hidden" name="_template" value="basic">
</form>
<button id="send">Start Bombing</button>
<span id="logger">...</span>
</div>
</div>
<!-- JAVASCRIPT -->
<script src="script.js"></script>
</body>
</html>