-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofielpagina.html
105 lines (105 loc) · 5.25 KB
/
profielpagina.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
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.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" class="active">Profiel</a>
<a href="voortgangpagina.html">Voortgang</a>
</div>
<div class="profilePic">
<div>Jens</div>
<img src="img/blankProfilePic.png" width="50px" height="50px" alt="Profile pic">
</div>
</nav>
<div class="container2">
<h1>Profiel</h1>
<div class="formWrapper">
<form>
<div class="right">
<div class="inputDiv">
<label for="studentnum">Studentennr:</label>
<input type="text" name="studentnum"><br>
</div>
<div class="inputDiv">
<label for="class">Klas:</label>
<select name="class">
<option value="v1a">V1A</option>
<option value="v1b">V1B</option>
<option value="v1c">V1C</option>
<option value="v1d">V1D</option>
<option value="v1e">V1E</option>
</select><br>
</div>
<div class="inputDiv">
<label id="textFieldofstudy" for="fieldofstudy">Gekozen Studierichting:</label>
<div class="radioButtonDiv">
<input type="radio" name="fieldofstudy" value="sne" checked><span class="fieldSpan">SNE</span><br>
<input type="radio" name="fieldofstudy" value="bim"><span class="fieldSpan">BIM</span><br>
<input type="radio" name="fieldofstudy" value="sie"><span class="fieldSpan">SIE</span><br>
<input type="radio" name="fieldofstudy" value="ti"><span class="fieldSpan">TI</span><br>
<input type="radio" name="fieldofstudy" value="aai"><span class="fieldSpan">AAI</span><br>
</div>
</div>
<div class="inputDiv pictureDiv">
Foto:
<div class="picWrapper">
<img src="img/blankProfilePic.png" alt="Profile Picture" style="vertical-align: top" height="100px" width="100px"><br>
<button>Change</button>
</div>
</div>
</div>
<div class="left">
<div class="inputDiv">
<label for="firstname">Voornaam:</label>
<input name="firstname" type="text"><br>
</div>
<div class="inputDiv">
<label for="surname">Achternaam:</label>
<input name="surname" type="text"><br>
</div>
<div class="inputDiv">
<label for="adress">Adres:</label>
<textarea name="adress" rows="4" cols="20"></textarea><br>
</div>
<div class="inputDiv">
<label for="email">E-mail:</label>
<input type="text" name="email"><br>
</div>
<div class="inputDiv">
<label for="phonenum">Telefoonnr:</label>
<input type="text" name="phonenum"><br>
</div>
<div class="inputDiv">
<label for="gender">Geslacht:</label>
<div class="genderRadioDiv">
<input type="radio" name="gender" value="male" checked><span class="genderSpan">Man</span>
<input type="radio" name="gender" value="female"><span class="genderSpan">Vrouw</span><br>
</div>
</div>
<div class="inputDiv">
<label for="birthdate">Geboortedatum:</label>
<input type="date" name="birthdate"><br>
</div>
</div>
</form>
</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>
</body>
</html>