Initial commit
This commit is contained in:
38
oneforall/index.css
Normal file
38
oneforall/index.css
Normal 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
32
oneforall/index.php
Normal 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>
|
Reference in New Issue
Block a user