Initial commit

This commit is contained in:
2022-03-16 18:52:45 +01:00
commit 09048ea85c
74 changed files with 18457 additions and 0 deletions

38
oneforall/index.css Normal file
View File

@ -0,0 +1,38 @@
/* https://www.cssportal.com/css-flexbox-generator/ */
body {
margin:0;
}
h2 {
font-family: Arial, sans-serif;
}
.divtop {
border:1px;
border-bottom-style:solid;
width:100vw;
padding:5px;
}
.searchtop {
width:24em;
}
.buttontop {
width:12em;
margin-left:15px;
}
.buttontop2 {
width:7em;
}
.divmain {
display:flex;
}
.divmaintop {
border:1px;
border-bottom-style:solid;
height:50px;
text-align:center;
}
.divmainbody {
margin:50px;
border:1px solid;
height:100%;
}

32
oneforall/index.php Normal file
View File

@ -0,0 +1,32 @@
<!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>
<div>
<button type="button" class="buttontop2">Lizenzen</button>
<button type="button" class="buttontop2">Kategorien</button>
<button type="button" class="buttontop2">Benutzer</button>
</div>
<div class="divmain">
<div class="divmaintop">
<h2>Übersicht</h2>
</div>
<div class="divmainbody">
</div>
</div>
</body>
</html>