-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestdeviking.html
More file actions
75 lines (62 loc) · 2.73 KB
/
testdeviking.html
File metadata and controls
75 lines (62 loc) · 2.73 KB
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
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="vikingstyle.css" />
<script src="vikingjs.js"></script>
</head>
<body>
<h1>Calculer la note d'un candidat pour les ECE</h1><br>
<p>Saisir A, B, C ou D pour la compétence "s'approprier" en cliquant sur le bouton:</p>
<button type="button" onclick="appCoef = change_coef('app_coef',appCoef)" class="waves-effect waves-light btn">
<div class="container">
<a id="app_coef">0</a>
</div>
</button>
<button type="button" onclick="appNote = change_note('app_note',appNote)" class="waves-effect waves-light btn">
<div class="container">
<a id="app_note">A</a>
</div>
</button>
<p>Saisir A, B, C ou D pour la compétence "valider" en cliquant sur le bouton:</p>
<button type="button" onclick="valCoef = change_coef('val_coef',valCoef)" class="waves-effect waves-light btn">
<div class="container">
<a id="val_coef" >0</a>
</div>
</button>
<button type="button" onclick="valNote = change_note('val_note',valNote)" class="waves-effect waves-light btn">
<div class="container">
<a id="val_note" >A</a>
</div>
</button>
<p>Saisir A, B, C ou D pour la compétence "analyser" en cliquant sur le bouton:</p>
<button type="button" onclick="anaCoef = change_coef('ana_coef',anaCoef)" class="waves-effect waves-light btn">
<div class="container">
<a id="ana_coef" >0</a>
</button>
<button type="button" onclick="anaNote = change_note('ana_note',anaNote)" class="waves-effect waves-light btn">
<div class="container">
<a id="ana_note" >A</a>
</button>
<p>Saisir A, B, C ou D pour la compétence "réaliser" en cliquant sur le bouton:</p>
<button type="button" onclick="reaCoef = change_coef('rea_coef',reaCoef)" class="waves-effect waves-light btn">
<div class="container">
<a id="rea_coef" >0</a>
</button>
<button type="button" onclick="reaNote = change_note('rea_note',reaNote)" class="waves-effect waves-light btn">
<div class="container">
<a id="rea_note" >A</a>
</button>
<p>Saisir A, B, C ou D pour la compétence "communiquer" en cliquant sur le bouton:</p>
<button type="button" onclick="comCoef = change_coef('com_coef',comCoef)" class="waves-effect waves-light btn">
<div class="container">
<a id="com_coef" >0</a>
</button>
<button type="button" onclick="comNote = change_note('com_note',comNote)" class="waves-effect waves-light btn">
<div class="container">
<a id="com_note" >A</a>
</button>
<p>La note finale est:</p>
<button type="button" onclick="notefinale()">Calculer!</button>
<p id="notefinale"></p>
</body>
</html>