-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcreateMilestone.html
87 lines (66 loc) · 2.86 KB
/
createMilestone.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/main.css" />
<link rel="icon" type="image/ico/png" href="resources/images/favicon.png" />
<meta name="description" content="Fund Seeker, A web app to find and give funds">
<meta name="keywords" content="Funds Track,Fund,Seeker,Sponsor">
<meta name="author" content="Samad alias Nyein Chan">
<meta name="robots" content="index, nofollow" />
<!-- JQuery JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Personal Scripts -->
<script src="javascript/scripts.js"></script>
<!-- <script src="javascript/tables/fake-data/data.js"></script> -->
<title>Fund Givers</title>
</head>
<body>
<div id="header"></div>
<div style="max-width:800px;margin:auto;margin-top:100px;">
<div style="font-size: 3em;text-align:center;">Create Milestone</div>
<form action="#">
<div class="form-group">
<label for="Name">Name:</label>
<input type="text" class="form-control" id="name" name="name">
</div>
<div class="form-group">
<label for="description">Description:</label>
<textarea class="form-control" rows="5" id="description"></textarea>
</div>
<div class="form-group">
<label for="DeadLine">DeadLine:</label>
<input type="date" class="form-control" id="DeadLine" name="DeadLine">
</div>
<div class="form-group">
<label for="assinedTo">Assigned To:</label>
<input type="text" class="form-control" id="assinedTo" name="assinedTo">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
<div id="milestoneName" style="font-size: 2em;"><br></div>
<div id="assignedTo"></div>
<div id="description"></div>
</div>
<div id="footer"></div>
<!-- <script>
fetch("data.json").then(response => response.json()
.then(data => ({
data: data,
status: response.status
}))
.then(data=>{
$(document).ready(function(){
$("#milestoneName").append(``)
$("#deadline").append(``)
$("#assignedTo").append(``)
$("#description").append(``)
})
}));
</script> -->
</body>
</html>