265dff3329
Some changes to UI, file encryption, the pacman game and the readme.
43 lines
1.6 KiB
HTML
43 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>500 - 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') }}">
|
|
</head>
|
|
<body class="dark">
|
|
|
|
<header class="card" style="margin-bottom: 20px;">
|
|
<h1>PacCrypt</h1>
|
|
<p>Secure Encoding, Encryption and Password Generation</p>
|
|
</header>
|
|
|
|
<main>
|
|
<section class="card" style="padding: 50px 30px;">
|
|
<h2 style="color: #00ff99; font-size: 2.5em;">500 - Server Error</h2>
|
|
<p style="margin-top: 20px; font-size: 1.2em; color: #cccccc;">
|
|
Uh oh! The ghosts chomped the server. 🧟♂️
|
|
</p>
|
|
|
|
<div class="button-group" style="margin-top: 30px;">
|
|
<a href="{{ url_for('index') }}">
|
|
<button type="button">Return Home</button>
|
|
</a>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer class="card" style="margin-top: 20px;">
|
|
<p>© 2025 UnNaturalll-Dev. All rights reserved.</p>
|
|
<a href="https://github.com/TySP-Dev" target="_blank" id="github-link">
|
|
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Flogos-world.net%2Fwp-content%2Fuploads%2F2020%2F11%2FGitHub-Logo.png&f=1&nofb=1&ipt=b9d67651e313b2cdbeae8a7ec9320dadb278a21a2e7217810b839c233c04f265"
|
|
alt="GitHub Logo" width="100">
|
|
</a>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|