MPT Micro Project Report Format[1]
MPT Micro Project Report Format[1]
On
To-Do Application
Group Members
Sr. Enrollment Number Name
No.
1 226020307005 Bakraniya Aastha
2 226020307015 Bhatt Diya
3 226020307022 Bhut Vanee
4 226020307047 Davda Dharmi
5 226020307069 Gohel Dhanvi
Index
Sr. No. Topic Name
1 Abstract
3 Coding
4 Output Screenshots
Abstract
the ultimate solution for mastering your daily tasks and optimizing
productivity. In the hustle and bustle of modern life, keeping track
of everything can be overwhelming. That's where TaskEase comes
in. Our user-friendly application offers a seamless way to organize
your tasks, prioritize your responsibilities, and achieve your goals
with ease. Whether you're a busy professional, a student juggling
multiple projects, or a parent managing a hectic household,
TaskEase empowers you to stay on top of your to-do list and make
the most out of every day. Say hello to efficiency and goodbye to
chaos with TaskEase.
Coding
Todolist.component.html
<div class="container">
<h1>To-Do Application</h1>
<hr>
<form id="submitForm" (ngSubmit)="onSubmit(taskForm)"
#taskForm="ngForm">
<div class="form-group">
<input type="text" class="form-control" id="task"
placeholder="Enter task" ngModel name="task" required>
<small *ngIf="taskForm.invalid && taskForm.dirty"
id="errorMessage" class="form-text text-danger">Required
field</small>
</div>
<hr>
<table class="table">
<thead>
<tr>
<th scope="col">Task</th>
<th scope="col">Completed</th>
<th scope="col">Delete</th>
<th scope="col">Edit</th>
<th scope="col">Save</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let t of taskArray; index as i">
<td>
</tbody>
</table>
</div>
todolist.component.ts
}
App.component.html
<app-todolist></app-todolist>
app.component.ts
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'todo';
}
app.module.ts
@NgModule({
declarations: [
AppComponent,
TodolistComponent
],
imports: [
FormsModule,
BrowserModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
enviroments
environment.ts
environment.prod.ts