38 lines
913 B
PHP
38 lines
913 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Login Page</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background-color: #f0f0f0; /* You can change this color as needed */
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
.login-button {
|
|
padding: 10px 20px;
|
|
font-size: 18px;
|
|
color: #fff;
|
|
background-color: #007bff; /* Button color */
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
text-transform: uppercase;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.login-button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<a class="login-button" href="<?= base_url('login'); ?>">Login</a>
|
|
</body>
|
|
</html>
|