forked from mikeebid/TeaRoom-Ing.Software-Systems-Unibo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Requirements analysis.html
60 lines (58 loc) · 1.47 KB
/
Requirements analysis.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="resources/style/style.css">
<script>
function changeView(title,src)
{
document.getElementById('title').innerHTML="<h2>"+title+"</h2>";
document.getElementById('frame').src = src
}
</script>
</head>
<body>
<div id="top">
<h1>LABORATORIO DI SISTEMI SOFTWARE: Workspace di analisi dei requisiti <font size="5"></font> </h1>
</div>
<div id="title">
<h2>Consegna</h2>
</div>
<iframe id='frame' src="resources/parts/consegna.html"></iframe>
<div style="font-size: 18px;">
<table>
<tbody>
<tr>
<td>
<div class="button" onclick="changeView('Consegna','resources/parts/consegna.html')">
<u>Consegna</u>
</div>
</td>
<td>
<div class="button" onclick="changeView('Sprint Iniziale','resources/parts/requirements0.html')">
<u>Considerazioni Iniziali</u>
</div>
</td>
<td>
<div class="button" onclick="changeView('Sprint 1','resources/parts/requirements1.html')">
<u>Sprint 1</u>
</div>
</td>
<td>
<div class="button" onclick="changeView('Sprint 2','resources/parts/requirements2.html')">
<u>Sprint 2</u>
</div>
</td>
<td>
<div class="button" onclick="changeView('Sprint 3','resources/parts/requirements3.html')">
<u>Sprint 3</u>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</body>
<!-- <script>
alert(window.innerHeight);
</script>-->
</html>