-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.64 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!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="https://cdnjs.cloudflare.com/ajax/libs/patternfly/4.22.1/css/patternfly.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/patternfly/4.22.1/css/patternfly-additions.min.css">
<link rel="stylesheet" href="style.css">
<title>Taskpro</title>
</head>
<body class="pf-c-page">
<header class="pf-c-page__header pf-m-light">
<h1 class="pf-c-title pf-m-xl">
Taskpro
</h1>
</header>
<main class="pf-c-page__main">
<div class="pf-c-content">
<div class="pf-c-content__main">
<div class="pf-c-form pf-m-horizontal">
<div>
<label class="pf-c-form__label" for="taskInput">Task Description</label>
<input type="text" id="taskInput" class="pf-c-form-control" placeholder="Enter a Task">
<label class="pf-c-form__label" for="dueDate">Due Date</label>
<input type="date" id="dueDate" class="pf-c-form-control">
<button id="addTask" class="pf-c-button pf-m-primary">Add Task</button>
</div>
</div>
<ul id="taskList" class="pf-c-list pf-m-compact"></ul>
</div>
</div>
</main>
<footer class="pf-c-page__footer pf-m-light">
<p>Taskpro © 2024. All rights reserved</p>
</footer>
<script src="app.js"></script>
</body>
</html>