-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvoortgangpagina.html
99 lines (99 loc) · 4.56 KB
/
voortgangpagina.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
88
89
90
91
92
93
94
95
96
97
98
99
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=2.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,900" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>WebLeertaak</title>
</head>
<body>
<nav>
<div id="links">
<a href="homepagina.html">Home</a>
<a href="profielpagina.html">Profiel</a>
<a href="voortgangpagina.html" class="active">Voortgang</a>
</div>
<div class="profilePic">
<div>Jens</div>
<img src="img/blankProfilePic.png" class="pic" width="50px" height="50px" alt="Profile pic">
</div>
</nav>
<div class="container3">
<h1>Voortgang</h1>
<div class="right">
<table class="infoTable">
<tr>
<td>Student:</td>
<td>Jens</td>
</tr>
<tr>
<td>Telefoon:</td>
<td>0123456789</td>
</tr>
<tr>
<td>email:</td>
<td>[email protected]</td>
</tr>
</table>
<div>
<img src="img/plattegrond.png" id="maps" alt="Map" height="120px" width="300px">
</div>
<div>
<img src="img/burndownchart.png" alt="Burn down chart" height="120px" width="300px">
</div>
</div>
<div class="left">
<form id="expectedP">
<table class="cursusTable">
<thead>
<tr>
<th>Vakcode</th>
<th>ECTS</th>
<th>Datum behaald</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="text" name="vakcode1" placeholder="vakcode"></td>
<td><input type="number" name="ects1" min="0" max="60" placeholder="ECTS" required></td>
<td><input type="date" name="date1" required></td>
</tr>
<tr>
<td><input type="text" name="vakcode2" placeholder="vakcode"></td>
<td><input type="number" name="ects2" min="0" max="60" placeholder="ECTS" required></td>
<td><input type="date" name="date2"></td>
</tr>
<tr>
<td><input type="text" name="vakcode3" placeholder="vakcode"></td>
<td><input type="number" name="ects3" min="0" max="60" placeholder="ECTS" required></td>
<td><input type="date" name="date3"></td>
</tr>
<tr>
<td><input type="text" name="vakcode4" placeholder="vakcode"></td>
<td><input type="number" name="ects4" min="0" max="60" placeholder="ECTS" required></td>
<td><input type="date" name="date4"></td>
</tr>
<tr>
<td><input type="text" name="vakcode5" placeholder="vakcode"></td>
<td><input type="number" name="ects5" min="0" max="60" placeholder="ECTS" required></td>
<td><input type="date" name="date5"></td>
</tr>
</tbody>
</table>
</form>
<button type="submit" form="expectedP" value="Submit">Bereken studietempo</button>
</div>
</div>
<hr>
<footer>
Deze opdracht is gemaakt in het kader van het vak Analyse & User Interfaces
<p>
<span id="authorSpan">Auteur: Berry Hijwegen</span>
<span id="dateSpan">Datum: 13-2-2019</span>
</p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>