mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
44a2e609fb
refactor: redesign signup page refactor: redesign summary page
28 lines
768 B
HTML
28 lines
768 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
{{ template "head.tpl.html" . }}
|
|
|
|
<body class="bg-gray-900 text-gray-700 p-4 pt-10 flex flex-col min-h-screen max-w-screen-xl mx-auto justify-center">
|
|
|
|
{{ template "header.tpl.html" . }}
|
|
|
|
<div class="w-full flex justify-center">
|
|
<div class="flex items-center justify-between max-w-4xl flex-grow">
|
|
<div><a href="" class="text-gray-500 text-sm">← Go back</a></div>
|
|
<div><h1 class="font-semibold text-2xl text-white m-0 border-b-4 border-green-700">Imprint & Data Privacy</h1>
|
|
</div>
|
|
<div></div>
|
|
</div>
|
|
</div>
|
|
|
|
<main class="mt-10 flex-grow flex justify-center w-full">
|
|
{{ htmlSafe .HtmlText }}
|
|
</main>
|
|
|
|
{{ template "footer.tpl.html" . }}
|
|
|
|
{{ template "foot.tpl.html" . }}
|
|
</body>
|
|
|
|
</html> |