41 lines
1.4 KiB
HTML
41 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Vizsgaeredmények rögzítése</title>
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
<body>
|
|
<h1>Vizsgaeredmények rögzítése</h1>
|
|
<table id="MainTable">
|
|
<tr>
|
|
<th>Ssz</th>
|
|
<th>Név</th>
|
|
<th>Neptun</th>
|
|
<th>Eredmény</th>
|
|
</tr>
|
|
<tr id="sample">
|
|
<th>1.</th>
|
|
<td><input type="text" name="" id=""></td>
|
|
<td><input type="text" name="" id="" maxlength="6"></td>
|
|
<td>
|
|
<select name="" id="" class="marks" onchange="updateaverage()">
|
|
<option value="0">Nem jelent meg</option>
|
|
<option value="1">Elégtelen (1)</option>
|
|
<option value="2">Elégséges (2)</option>
|
|
<option value="3">Közepes (3)</option>
|
|
<option value="4">Jó (4)</option>
|
|
<option value="5">Jeles (5)</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<div style="display:flex">
|
|
<button style="float: left; margin-right: 5px;" onclick="newliner()">+</button>
|
|
<p id="average" style="float: left; margin: 0;">Az átlag: </p>
|
|
</div>
|
|
|
|
<script src="./script.js"></script>
|
|
</body>
|
|
</html> |