19 lines
584 B
HTML
19 lines
584 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>On-Call Management</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; text-align: center; margin-top: 50px; }
|
|
.container { border: 1px solid #ccc; padding: 20px; display: inline-block; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>On-Call & Leave Management</h1>
|
|
<p>Welcome to the management application.</p>
|
|
<button>Check Schedule</button>
|
|
</div>
|
|
</body>
|
|
</html> |