mltxstudio / login.html
moreiraj93's picture
// src/App.js
d2c11ec verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - MLTX Studio Barista AI</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-50 dark:bg-gray-900 transition-colors duration-300">
<custom-navbar></custom-navbar>
<main class="pt-20 min-h-screen flex items-center justify-center">
<div class="bg-white dark:bg-gray-800 rounded-2xl p-8 shadow-lg w-full max-w-md">
<h1 class="text-3xl font-bold text-gray-800 dark:text-white mb-8 text-center">Login</h1>
<form class="space-y-6">
<div>
<label for="email" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
Email
</label>
<input
type="email"
id="email"
required
class="w-full px-4 py-3 border border-gray-300 dark:border-gray-600 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent dark:bg-gray-700 dark:text-white"
placeholder="Enter your email"
>
</div>
<div>
<label for="password" class="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
Password
</label>
<input
type="password"
id="password"
required
class="w-full px-4 py-3 border border-gray-300 dark:border-gray-600 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent dark:bg-gray-700 dark:text-white"
placeholder="Enter your password"
>
</div>
<button
type="submit"
class="w-full bg-blue-600 hover:bg-blue-700 text-white py-3 rounded-lg font-semibold transition-colors"
>
Login
</button>
</form>
<p class="mt-6 text-center text-gray-600 dark:text-gray-400">
Don't have an account?
<a href="/signup.html" class="text-blue-600 hover:text-blue-500 font-medium">
Sign up here
</a>
</p>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
</body>
</html>