| Linux in-mum-web1499.main-hosting.eu 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64 Path : /home/u901718425/domains/lightslategrey-walrus-406938.hostingersite.com/public_html/ |
| Current File : /home/u901718425/domains/lightslategrey-walrus-406938.hostingersite.com/public_html/index.html |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daily Task Tracker</title>
<link rel="stylesheet" href="style.css">
<style>
/* style.css */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
.container {
width: 60%;
margin: 50px auto;
background: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
text-align: center;
}
form {
display: flex;
flex-direction: column;
gap: 10px;
}
label {
font-weight: bold;
}
input, textarea {
padding: 8px;
font-size: 16px;
border-radius: 5px;
border: 1px solid #ddd;
}
button {
background-color: #4CAF50;
color: white;
border: none;
padding: 10px;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
#taskList {
margin-top: 20px;
}
.task {
padding: 10px;
background-color: #f9f9f9;
border-radius: 5px;
margin-bottom: 10px;
}
.task .date-time {
font-size: 14px;
color: gray;
}
</style>
</head>
<body>
<div class="container">
<h1>Candidate Task Tracker</h1>
<!-- Task Input Form -->
<form id="taskForm">
<label for="taskName">Task Name</label>
<input type="text" id="taskName" required>
<label for="taskDetails">Task Details</label>
<textarea id="taskDetails" required></textarea>
<button type="submit">Submit Task</button>
</form>
<!-- Display Tasks -->
<h2>Today's Tasks</h2>
<div id="taskList"></div>
</div>
<script src="script.js"></script>
</body>
</html>