29 lines
929 B
HTML
29 lines
929 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>qv</title>
|
|
<script src="/static/js/tailwind.min.js"></script>
|
|
</head>
|
|
<body class="bg-gray-100 text-gray-900">
|
|
<div class="min-h-screen flex flex-col items-center justify-center">
|
|
<header class="text-center mb-8">
|
|
<h1 class="text-4xl font-bold mb-4">Quadratic Voting</h1>
|
|
<p class="text-lg text-gray-600">Start your journey by creating a new election.</p>
|
|
</header>
|
|
|
|
<main class="text-center">
|
|
<a href="/election/create"
|
|
class="bg-blue-600 text-white text-lg font-semibold px-6 py-3 rounded-lg hover:bg-blue-700">
|
|
Create Election
|
|
</a>
|
|
</main>
|
|
|
|
<footer class="mt-12 text-center text-gray-600">
|
|
<a href="https://code.dlmw.ch/dlmw/qv" target="_blank">See the source code</a>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|