View Page Source.com en.cryptohopper.bz Project Index.php.HTML
View Page Source.com en.cryptohopper.bz Project Index.php.HTML
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>skydivecapital247.com| Register</title>
<link
href="https://fonts.googleapis.com/css2?
family=Cairo:wght@200;300;400;600;700;900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/tailwind.css" />
<script
src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js"
defer></script>
</head>
<body>
<div x-data="setup()" x-init="$refs.loading.classList.add('hidden');
setColors(color);" :class="{ 'dark': isDark}">
<!-- Loading screen -->
<div
x-ref="loading"
class="fixed inset-0 z-50 flex items-center justify-center text-2xl font-
semibold text-white bg-primary-darker"
>
Loading.....
</div>
<div
class="flex flex-col items-center justify-center min-h-screen p-4 space-y-4
antialiased text-gray-900 bg-gray-100 dark:bg-dark dark:text-light"
>
<input
class="w-full px-4 py-2 border rounded-md dark:bg-darker
dark:border-gray-700 focus:outline-none focus:ring focus:ring-primary-100
dark:focus:ring-primary-darker"
type="text"
name="loginId"
id="loginId"
placeholder="email"
value=""
required
/>
<input
class="w-full px-4 py-2 border rounded-md dark:bg-darker
dark:border-gray-700 focus:outline-none focus:ring focus:ring-primary-100
dark:focus:ring-primary-darker"
type="password"
id="loginPass"
name="loginPass"
placeholder="password"
value=""
required
/>
</div>
</form>
<!-- Or -->
<div class="flex items-center justify-center space-x-2 flex-nowrap">
<span class="w-20 h-px bg-gray-300"></span>
<span>OR</span>
<span class="w-20 h-px bg-gray-300"></span>
</div>
<script>
const setup = () => {
const getTheme = () => {
if (window.localStorage.getItem('dark')) {
return JSON.parse(window.localStorage.getItem('dark'))
}
return !!window.matchMedia && window.matchMedia('(prefers-color-scheme:
dark)').matches
}
return {
loading: true,
isDark: getTheme(),
color: getColor(),
selectedColor: 'cyan',
toggleTheme() {
this.isDark = !this.isDark
setTheme(this.isDark)
},
setColors,
}
}
</script>
</body>
</html>