From 3c1d28c31902829f516310ce32bfb4de4c72381c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?D=C3=B6m=C5=91k=20D=C3=A1vid?= <david31415@sch.bme.hu>
Date: Wed, 27 Jan 2021 02:12:02 +0000
Subject: [PATCH] =?UTF-8?q?1.1=20feladat=20megold=C3=A1sa?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 feladat1/form.php   | 11 +++++++++++
 feladat1/index.html | 35 +++++++++++++++++++++++++++++++++--
 feladat1/list.php   | 28 ++++++++++++++++++++++++++++
 3 files changed, 72 insertions(+), 2 deletions(-)
 create mode 100644 feladat1/form.php
 create mode 100644 feladat1/list.php

diff --git a/feladat1/form.php b/feladat1/form.php
new file mode 100644
index 0000000..71e0085
--- /dev/null
+++ b/feladat1/form.php
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="UTF-8" />
+<title>Hozzáadás felület</title>
+</head>
+<body>
+Form helye
+</table>
+</body>
+</html>
\ No newline at end of file
diff --git a/feladat1/index.html b/feladat1/index.html
index c69ee18..5ae8c3c 100644
--- a/feladat1/index.html
+++ b/feladat1/index.html
@@ -1,9 +1,40 @@
 <!DOCTYPE html>
 <html>
 <head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+
+    <!--- Bootstrap CSS --->
+    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> 
+
+
 <title>Hello World</title>
 </head>
 <body>
-Under construction!
+    <!-- Ezeket éles helyzetben saját helyről szolgálnám ki -->
+    <!-- Optional JavaScript -->
+    <!-- jQuery first, then Popper.js, then Bootstrap JS -->
+    <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>	
+
+    <nav class="navbar navbar-expand-lg navbar-light bg-light">
+        <a class="navbar-brand" href="index.html">Dömők Dávid</a>
+  	<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
+    		<span class="navbar-toggler-icon"></span>
+  	</button>
+  	<div class="collapse navbar-collapse" id="navbarNav">
+            <ul class="navbar-nav">
+                <li class="nav-item active">
+                    <a class="nav-link" href="form.php">Hozzáadás<span class="sr-only">(current)</span></a>
+                </li>
+                <li class="nav-item">
+                    <a class="nav-link" href="list.php">Listázás</a>
+                </li>
+            </ul>
+        </div>
+    </nav>
+ 
+
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/feladat1/list.php b/feladat1/list.php
new file mode 100644
index 0000000..8546bdc
--- /dev/null
+++ b/feladat1/list.php
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html>
+<head>
+<meta charset="UTF-8" />
+<title>Listázó felület</title>
+</head>
+<body>
+Táblázat
+<table id="table1">
+    <tr>
+	<th>tulajdonos neve</th>
+	<th>autó megnevezés</th>
+	<th>garancia állapota</th>
+	<th>autó életkor</th>
+	<th>szerviz kezdete</th>
+	<th>szerviz kész</th>
+    </tr>
+    <tr>
+	<td></td>
+	<td></td>
+	<td></td>
+	<td></td>
+	<td></td>
+	<td></td>
+    </tr>
+</table>
+</body>
+</html>
\ No newline at end of file
-- 
GitLab