Skip to content

Instantly share code, notes, and snippets.

@johackim
Created August 28, 2021 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johackim/e7a4ca2f00b587c890849586ac89d3a1 to your computer and use it in GitHub Desktop.
Save johackim/e7a4ca2f00b587c890849586ac89d3a1 to your computer and use it in GitHub Desktop.
waiting.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Ethibox - Installation en cours...</title>
<link href="https://unpkg.com/tailwindcss@2.2.8/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-900 text-white min-h-screen flex justify-center items-center text-center">
<main>
<img src="https://svgur.com/i/NUv.svg" class="w-12 sm:w-16 m-auto" alt="loading" />
<p class="mt-2 p-2 sm:p-0 sm:text-xl font-bold">Un administrateur finalise l'installation de votre application...</p>
<p class="mt-2 p-2 sm:p-0 sm:text-xl font-bold">Vous recevrez très bientôt un e-mail une fois l'installation complètement terminée.</p>
</main>
<footer class="absolute bottom-0">
<span class="block mb-4">Ethibox</span>
</footer>
<script>
setTimeout(() => {
document.location.reload(true);
}, 60000);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment