Advance Create An Account Script
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Account Registration</title>
<style>
body {
font-family: Arial, sans-serif;
}
.registration-box {
width: 300px;
margin: auto;
padding: 20px;
border: 2px solid #3498db;
border-radius: 8px;
margin-top: 50px;
}
label {
display: block;
margin-top: 10px;
}
input {
width: 100%;
padding: 8px;
margin-top: 5px;
margin-bottom: 10px;
box-sizing: border-box;
}
button {
background-color: #3498db;
color: #fff;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
}
button:hover {
background-color: #2980b9;
}
</style>
</head>
<body>
<div class="registration-box">
<h2>Create an Account</h2>
<form action="https://www.youtube.com/@techpk3013" method="post">
<!-- User details -->
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<!-- Password -->
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<label for="confirm_password">Confirm Password:</label>
<input type="password" id="confirm_password" name="confirm_password" required>
<!-- Human verification box -->
<label for="human_verification">What is 5 + 3? (Type the answer):</label>
<input type="text" id="human_verification" name="human_verification" required>
<!-- Submit button with JavaScript redirection -->
<button type="button" onclick="redirectToAnotherWebsite()">Create Account</button>
</form>
</div>
<script>
function redirectToAnotherWebsite() {
// Redirect to another website
window.location.href = 'https://www.youtube.com/@techpk3013';
}
</script>
</body>
</html>