-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·50 lines (50 loc) · 1.58 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
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>ProjectManager</title>
<link rel="stylesheet" href="dist/main.css" />
<script src="dist/bundle.js" defer></script>
</head>
<body>
<template id="project-input">
<form id="project-form">
<div class="form-control">
<label for="title">Title</label>
<input type="text" name="title" id="title" />
</div>
<div class="form-control">
<label for="description">Description</label>
<textarea id="description" name="description" rows="3"></textarea>
</div>
<div class="form-control">
<label for="people">People</label>
<input type="number" name="people" id="people" step="1"/>
</div>
<button id="submit-btn" type="submit">ADD PROJECT</button>
</form>
</template>
<template id="single-project">
<li></li>
</template>
<template id="project-list">
<section class="projects">
<header>
<h2>Active Projects</h2>
</header>
<ul id="active projects" class="drop-target"></ul>
</section>
</template>
<template id="finished-projects">
<section id="finished-projects" class="projects">
<header>
<h2>Finished Projects</h2>
</header>
<ul id="finished-projects" class="drop-target"></ul>
</section>
</template>
<div id="app"></div>
</body>
</html>