filter task show main task value and main and sub task edit

This commit is contained in:
Pooja Fulari
2026-04-21 10:27:13 +05:30
parent c6f543c63f
commit e46e1e52bb
58 changed files with 412 additions and 253 deletions

View File

@@ -4,33 +4,39 @@
<meta charset="UTF-8" />
<title>LCEPL Client Billing Software</title>
<style>
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background: #f3f3f3;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
height: 98.3vh;
}
.login-container {
background: white;
padding: 2rem;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
width: 300px;
border-radius: 20px;
box-shadow: 10px 10px 20px rgba(110, 0, 0, 0.3);
width: 21%;
}
h2 {
text-align: center;
margin-bottom: 1.5rem;
}
input[type="text"],
input[type="password"] {
width: 100%;
padding: 0.5rem;
margin-bottom: 1rem;
margin-bottom: 1.5rem;
border: 1px solid #ccc;
border-radius: 5px;
}
@@ -57,6 +63,7 @@
.subtitle {
text-align: center;
margin: 20px;
}
</style>
</head>