45 lines
1.7 KiB
PHP
45 lines
1.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Login Page</title>
|
|
<!-- Bootstrap 5 CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
</head>
|
|
<body class="bg-light">
|
|
|
|
<div class="container d-flex justify-content-center align-items-center vh-100">
|
|
<div class="card shadow-sm p-4" style="width: 100%; max-width: 400px;">
|
|
<h3 class="text-center mb-4">Login</h3>
|
|
<form action="{{ url('client-login') }}" method="POST">
|
|
@csrf
|
|
<!-- Email -->
|
|
<div class="mb-3">
|
|
<label for="email" class="form-label">Email address</label>
|
|
<input type="email" class="form-control" id="email" name="email" placeholder="Enter email">
|
|
</div>
|
|
<!-- Password -->
|
|
<div class="mb-3">
|
|
<label for="password" class="form-label">Password</label>
|
|
<input type="password" class="form-control" name="password" id="password" placeholder="Enter password">
|
|
</div>
|
|
<!-- Remember Me -->
|
|
<div class="mb-3 form-check">
|
|
<input type="checkbox" class="form-check-input" id="remember">
|
|
<label class="form-check-label" for="remember">Remember me</label>
|
|
</div>
|
|
<!-- Submit -->
|
|
<button type="submit" class="btn btn-primary w-100">Login</button>
|
|
</form>
|
|
<div class="text-center mt-3">
|
|
<small>Don't have an account? <a href="#">Sign up</a></small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Bootstrap 5 JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html>
|