OneForAll/oneforall/index.php

36 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2022-03-16 18:52:45 +01:00
<!DOCTYPE html>
<html>
<head>
<title>OneForAll</title>
<link rel="stylesheet" href="index.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<div class="divtop">
<form action="<?php echo htmlspecialchars($_SERVER['PHP_SELF']) ?>" method="post">
<input type="text" class="searchtop" name="name" placeholder="Suche nach etwas">
<input type="submit" class="buttontop" name="lizerst" value="Lizenz eintragen">
<input type="submit" class="buttontop" name="lizab" value="Kategorie erstellen">
<input type="submit" class="buttontop" name="lizab" value="Benutzer erstellen">
</form>
</div>
2022-03-18 23:08:22 +01:00
<div class="divsubtop">
2022-03-16 18:52:45 +01:00
<button type="button" class="buttontop2">Lizenzen</button>
<button type="button" class="buttontop2">Kategorien</button>
<button type="button" class="buttontop2">Benutzer</button>
</div>
2022-03-18 23:08:22 +01:00
2022-03-16 18:52:45 +01:00
<div class="divmain">
<div class="divmaintop">
<h2>Übersicht</h2>
2022-03-22 15:46:52 +01:00
<hr>
2022-03-16 18:52:45 +01:00
</div>
2022-03-22 15:46:52 +01:00
<div class="divcontent">
<p>Test</p>
2022-03-16 18:52:45 +01:00
</div>
</div>
</body>
</html>