-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add deleteProject function & add nicer CSS
- Loading branch information
1 parent
1299946
commit 4b8a7af
Showing
8 changed files
with
122 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,22 +4,23 @@ | |
<meta charset="utf-8" /> | ||
<title>Output Management</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> | ||
<script defer src="./main.js"></script></head> | ||
<body> | ||
<header>TODOs</header> | ||
<header><h1><i class="fa-solid fa-check"></i>TODOs Manager</h1></header> | ||
<aside> | ||
<h1>Projects</h1> | ||
<h3>Projects</h3> | ||
<input type="text" name="projectsInputField" id="projectsInputField"> | ||
<button class="addProjectButton">+</button> | ||
<ul class="projectList"> | ||
<button class="addProjectButton btn btn-secondary">+</button> | ||
<ul class="projectList list-group"> | ||
|
||
</ul> | ||
</aside> | ||
<main> | ||
|
||
<div class="content"> | ||
<h1>Todos</h1> | ||
<h3>Todos</h3> | ||
|
||
<button class="showPopupButton">+</button> | ||
<button class="showPopupButton btn btn-secondary">+</button> | ||
<div class="popup"> | ||
<label for="todoInputField">Title</label> | ||
<input type="text" name="todoInputField" id="todoInputField"> | ||
|
@@ -33,7 +34,7 @@ <h1>Todos</h1> | |
</select> | ||
<button class="addTodoButton">Add</button> | ||
</div> | ||
<table> | ||
<table class="table"> | ||
<thead> | ||
<tr> | ||
<th>Title</th> | ||
|
@@ -45,7 +46,7 @@ <h1>Todos</h1> | |
</tbody> | ||
</table> | ||
</div> | ||
</main> | ||
|
||
<footer>Made by Benjamin-Re</footer> | ||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,22 +4,23 @@ | |
<meta charset="utf-8" /> | ||
<title>Output Management</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous"> | ||
</head> | ||
<body> | ||
<header>TODOs</header> | ||
<header><h1><i class="fa-solid fa-check"></i>TODOs Manager</h1></header> | ||
<aside> | ||
<h1>Projects</h1> | ||
<h3>Projects</h3> | ||
<input type="text" name="projectsInputField" id="projectsInputField"> | ||
<button class="addProjectButton">+</button> | ||
<ul class="projectList"> | ||
<button class="addProjectButton btn btn-secondary">+</button> | ||
<ul class="projectList list-group"> | ||
|
||
</ul> | ||
</aside> | ||
<main> | ||
|
||
<div class="content"> | ||
<h1>Todos</h1> | ||
<h3>Todos</h3> | ||
|
||
<button class="showPopupButton">+</button> | ||
<button class="showPopupButton btn btn-secondary">+</button> | ||
<div class="popup"> | ||
<label for="todoInputField">Title</label> | ||
<input type="text" name="todoInputField" id="todoInputField"> | ||
|
@@ -33,7 +34,7 @@ <h1>Todos</h1> | |
</select> | ||
<button class="addTodoButton">Add</button> | ||
</div> | ||
<table> | ||
<table class="table"> | ||
<thead> | ||
<tr> | ||
<th>Title</th> | ||
|
@@ -45,7 +46,7 @@ <h1>Todos</h1> | |
</tbody> | ||
</table> | ||
</div> | ||
</main> | ||
|
||
<footer>Made by Benjamin-Re</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters