mirror of
https://github.com/bakateam/merakiui.git
synced 2025-12-09 07:03:24 +00:00
50 lines
2.5 KiB
HTML
50 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Meraki UI Components</title>
|
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
|
<script src="//unpkg.com/alpinejs" defer></script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="w-full max-w-sm mx-auto overflow-hidden bg-white rounded-lg shadow-md dark:bg-gray-800">
|
|
<div class="px-6 py-4">
|
|
<h2 class="text-3xl font-bold text-center text-gray-700 dark:text-white">Brand</h2>
|
|
|
|
<h3 class="mt-1 text-xl font-medium text-center text-gray-600 dark:text-gray-200">Welcome Back</h3>
|
|
|
|
<p class="mt-1 text-center text-gray-500 dark:text-gray-400">Login or create account</p>
|
|
|
|
<form>
|
|
<div class="w-full mt-4">
|
|
<input class="block w-full px-4 py-2 mt-2 text-gray-700 placeholder-gray-500 bg-white border rounded-md dark:bg-gray-800 dark:border-gray-600 dark:placeholder-gray-400 focus:border-blue-400 dark:focus:border-blue-300 focus:ring-opacity-40 focus:outline-none focus:ring focus:ring-blue-300" type="email" placeholder="Email Address" aria-label="Email Address" />
|
|
</div>
|
|
|
|
<div class="w-full mt-4">
|
|
<input class="block w-full px-4 py-2 mt-2 text-gray-700 placeholder-gray-500 bg-white border rounded-md dark:bg-gray-800 dark:border-gray-600 dark:placeholder-gray-400 focus:border-blue-400 dark:focus:border-blue-300 focus:ring-opacity-40 focus:outline-none focus:ring focus:ring-blue-300" type="password" placeholder="Password" aria-label="Password" />
|
|
</div>
|
|
|
|
<div class="flex items-center justify-between mt-4">
|
|
<a href="#" class="text-sm text-gray-600 dark:text-gray-200 hover:text-gray-500">Forget Password?</a>
|
|
|
|
<button class="px-4 py-2 leading-5 text-white transition-colors duration-300 transform bg-gray-700 rounded hover:bg-gray-600 focus:outline-none" type="button">Login</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="flex items-center justify-center py-4 text-center bg-gray-50 dark:bg-gray-700">
|
|
<span class="text-sm text-gray-600 dark:text-gray-200">Don't have an account? </span>
|
|
|
|
<a href="#" class="mx-2 text-sm font-bold text-blue-500 dark:text-blue-400 hover:underline">Register</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |