38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>ZH adminisztráció</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h1>ZH adminisztráció</h1>
|
|
<table id="MAIN">
|
|
<tr>
|
|
<th>Név</th>
|
|
<th>Neptun</th>
|
|
<th>1. ZH</th>
|
|
<th>1. ZH pót</th>
|
|
<th>2. ZH</th>
|
|
<th>2. ZH pót</th>
|
|
<th>Összesem</th>
|
|
<th>Aláírás</th>
|
|
<th>Megajánlott</th>
|
|
</tr>
|
|
<tr onchange="update()">
|
|
<td><input type="text" name="" id=""></td>
|
|
<td><input type="text" name="" pattern="[a-zA-Z1-9]" maxlength="6"></td>
|
|
<td><input type="number" value="0" max="7" min="0" id="elsozh"></td>
|
|
<td><input type="number" value="0" max="7" min="0"></td>
|
|
<td><input type="number" value="0" max="7" min="0"></td>
|
|
<td><input type="number" value="0" max="7" min="0"></td>
|
|
<td>-</td>
|
|
<td>-</td>
|
|
<td>-</td>
|
|
</tr>
|
|
</table>
|
|
<button onclick="addline()">+</button>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |