forked from chinnijagadeesh/godly-pleasure-4788
-
Notifications
You must be signed in to change notification settings - Fork 0
/
createproject.html
48 lines (44 loc) · 1.76 KB
/
createproject.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=11, initial-scale=1.0" />
<link rel="stylesheet" href="./style/create.css" />
<link rel="stylesheet" href="./style/wcnavbar.css">
<title>Create project</title>
</head>
<body>
<div id="navbar">
<div>
<img src="https://app.everhour.com/assets/img/everhour_48.svg" alt="" />
</div>
<div id="showName"></div>
</div>
</div>
<div class="install">
<h2 class="head">Create first project</h2>
<p class="para">
In Everhour, your team track time spent on concrete tasks. This keeps
time organized and easy to analyze
</p>
<br />
<form action="">
<label for="">Project</label><br />
<input type="name" name="" class="project" id="name" placeholder="Project name..." required /><br />
<input type="checkbox" name="" id="check" />
<label for="" id="lb1">This project is billable</label><br /><br />
<label for="">Client</label><br />
<input type="name" name="" class="project" id="client" placeholder="Client name (optional)..." /><br /><br />
<label for="">Tasks</label><br />
<input type="text" name="" value="Business Development" id="val" class="project" /><br />
<input type="text" name="" value="Design" class="project" id="val1" /><br />
<input type="text" name="" value="Project Management" id="val2" class="project" /><br />
<input type="name" name="" class="project" placeholder="Task name..." id="task" /><br />
<p class="more para">Add more</p>
<input type="submit" class="button" id="next" value="Create" />
</form>
</div>
</body>
</html>
<script src="./script/create.js"></script>