-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (65 loc) · 2.06 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!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>Project Manager</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="app.css" />
<script type="module" src="dist/app.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"
defer
></script>
</head>
<body>
<template id="project-input">
<form class="form">
<div class="form-group mt-3">
<label for="title">Title</label>
<input type="text" id="title" class="form-control" />
</div>
<div class="form-group mt-3">
<label for="description">Description</label>
<textarea id="description" rows="3" class="form-control"></textarea>
</div>
<div class="form-group mt-3">
<label for="people">People</label>
<input
type="number"
id="people"
step="1"
min="0"
max="10"
class="form-control"
/>
</div>
<button type="submit" class="btn btn-primary mt-4">Add Project</button>
</form>
</template>
<template id="single-project">
<li draggable="true">
<h2></h2>
<h3></h3>
<p></p>
</li>
</template>
<template id="project-list">
<section class="projects container my-5">
<header class="row py-2 text-center">
<h2 class="text-capitalize mb-0"></h2>
</header>
<ul class="row"></ul>
</section>
</template>
<div id="app" class="container py-5"></div>
</body>
</html>