Task Manager is a simple web application that allows users to add, edit, and delete tasks. The interface is designed to be minimalist and user-friendly, providing an efficient way to manage daily task lists.
The project is organized into the following files:
index.html
: Contains the HTML structure of the application.style.css
: Contains the CSS styles for the application's appearance.index.js
: Contains the JavaScript logic for the application's functionality.
The index.html
file defines the basic structure of the application. It includes a form to add tasks and a list to display the added tasks.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Task Manager</title>
</head>
<body>
<form class="input-container">
<input type="text" placeholder="Insert Task Name" name="task" />
<button type="submit" id="btnSubmit">Add task ✔️</button>
</form>
<ul class="task-content">
<li class="header-task">
<div>Task list</div>
<div>Actions</div>
</li>
</ul>
<main>
<script src="index.js"></script>
</main>
</body>
</html>
We welcome contributions to improve Task Manager. If you have suggestions, bug fixes, or new features, please follow these steps to contribute:
-
Fork the Repository:
- Click the "Fork" button at the top right corner of the repository page.
-
Clone Your Fork:
- Clone the forked repository to your local machine using:
git clone https://github.com/Th3Mayar/TaskManager.git
- Clone the forked repository to your local machine using:
-
Create a New Branch:
- Create a new branch for your feature or bug fix:
git checkout -b feature/bugFixName
- Create a new branch for your feature or bug fix:
-
Make Your Changes:
- Implement your changes in the new branch. Make sure your code adheres to the project's coding standards.
-
Commit Your Changes:
- Commit your changes with a descriptive commit message:
git add . git commit -m "feat: add effects on styled with transform"
- Commit your changes with a descriptive commit message:
-
Push to Your Fork:
- Push your branch to your forked repository:
git push origin feature/nameBranch
- Push your branch to your forked repository:
-
Create a Pull Request:
- Navigate to the original repository and create a pull request from your fork. Provide a clear description of your changes and the purpose of the pull request.
Thank you for contributing to Task Manager!