-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 915 Bytes
/
index.html
File metadata and controls
33 lines (32 loc) · 915 Bytes
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
<html>
<head>
<script type="text/javascript" href="https://code.jquery.com/jquery-2.2.0.min.js" />
<script type="text/javascript" href="./app.js" />
</head>
<body>
<h1>
Evidence Based Estimation
</h1>
<p>
Input a set of actual velocities your team has taken over time.
Then give the estimated size of the next major milestone.
This application will tell you the projected time it will take to complete the milestone.
</p>
<label>Actual Velocities </label>
<input id="velocities" style="width: 200px;" value="10, 8, 10, 10, 6, 12, 7, 10, 12, 12"/>
<br /><br />
<label>size of milestone</label>
<input id="milestoneSize" value="100" />
<br /><br />
<label>Length of sprint in weeks</label>
<input id="lengthOfSprint" value="1" />
<br /><br />
<button id="runApp">
Calculate
</button>
<h2>
Estimation given these numbers
</h2>
<label id="output" />
</body>
</html>