generated from MrSphay/codex-agent-repository-kit
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 3m1s
30 lines
970 B
HTML
30 lines
970 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MobileManager</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<style>
|
|
.pin-puk-hidden { display: none; }
|
|
</style>
|
|
</head>
|
|
<body class="bg-gray-100 font-sans">
|
|
<nav class="bg-blue-600 p-4 text-white shadow-lg">
|
|
<div class="container mx-auto flex justify-between items-center">
|
|
<a href="/" class="text-xl font-bold">📱 MobileManager</a>
|
|
<a href="/add" class="bg-white text-blue-600 px-4 py-2 rounded font-semibold">+ Neuer Vertrag</a>
|
|
</div>
|
|
</nav>
|
|
<main class="container mx-auto mt-8">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
<script>
|
|
function toggleSecret(id) {
|
|
const el = document.getElementById(id);
|
|
el.classList.toggle('pin-puk-hidden');
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|