Skip to content

Instantly share code, notes, and snippets.

@johackim
Created August 5, 2020 12:55
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/332c62da9c630163aef3fdd63aa1c4db to your computer and use it in GitHub Desktop.
Save johackim/332c62da9c630163aef3fdd63aa1c4db to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Ethibox - Configuration en cours...</title>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-800 text-white min-h-screen flex justify-center items-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-2xl font-bold">Un administrateur configure votre application...</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