This commit is contained in:
Tyler
2025-05-01 18:46:29 -10:00
committed by GitHub
parent 766386501b
commit 7ec213fad0
18 changed files with 1321 additions and 659 deletions
+24 -16
View File
@@ -1,24 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="PacCrypt - File Pickup" />
<title>Pickup File - PacCrypt</title>
<link rel="icon" type="image/png" href="{{ url_for('static', filename='img/PacCrypt.png') }}">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
<!-- Favicon -->
<link rel="icon" type="image/png" href="{{ url_for('static', filename='img/PacCrypt.png') }}" />
<!-- Stylesheets -->
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}" />
</head>
<body class="dark">
<header class="card mb-5">
<!-- Header -->
<header class="card">
<h1>PacCrypt Pickup</h1>
<p>Enter passwords to retrieve your file securely</p>
<p>Enter passwords to retrieve your file</p>
</header>
<!-- Main Content -->
<main>
<!-- Pickup Form Section -->
<section class="card form-group">
<h2>🔐 Decrypt and Download</h2>
<!-- Flash Messages -->
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul style="color: red;">
@@ -29,16 +37,18 @@
{% endif %}
{% endwith %}
<form method="POST">
<input type="password" name="pickup_password" placeholder="Pickup Password" required>
<input type="password" name="enc_password" placeholder="Encryption Password" required>
<!-- Pickup Form -->
<form method="POST" class="pickup-form">
<input type="password" name="pickup_password" placeholder="Pickup Password" required autocomplete="off" />
<input type="password" name="enc_password" placeholder="Encryption Password" required autocomplete="off" />
<div class="button-group mt-3">
<button type="submit">📥 Decrypt and Download</button>
<button type="submit" class="download-btn">📥 Decrypt and Download</button>
</div>
</form>
</section>
<section class="card form-group mt-5">
<!-- File ID Section -->
<section class="card form-group">
<p style="font-size: 0.9em; color: gray;">Link ID: <code>{{ file_id }}</code></p>
</section>
</main>
@@ -47,10 +57,8 @@
<footer>
<p>&copy; 2025 UnNaturalll-Dev. All rights reserved.</p>
<a href="https://github.com/TySP-Dev" target="_blank" id="github-link">
<img src="\static\img\Github_logo.png"
alt="GitHub Logo" width="100" />
<img src="\static\img\Github_logo.png" alt="GitHub Logo" width="100" />
</a>
</footer>
</body>
</html>