mehr bootstrap updates
All checks were successful
Build and push / Pulling repo on server (push) Successful in 2s
All checks were successful
Build and push / Pulling repo on server (push) Successful in 2s
This commit is contained in:
parent
5424eec55d
commit
e343bb8f48
5
.vscode/extensions.json
vendored
5
.vscode/extensions.json
vendored
@ -1,12 +1,11 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"zarifprogrammer.tailwind-snippets",
|
||||
"dawhite.mustache",
|
||||
"otovo-oss.htmx-tags",
|
||||
"devsense.phptools-vscode",
|
||||
"bmewburn.vscode-intelephense-client",
|
||||
"github.copilot",
|
||||
"github.copilot-chat",
|
||||
"bradlc.vscode-tailwindcss"
|
||||
"anbuselvanrocky.bootstrap5-vscode",
|
||||
"hansuxdev.bootstrap5-snippets"
|
||||
]
|
||||
}
|
@ -18,6 +18,7 @@ class Page
|
||||
public $menu_text;
|
||||
public $menu_image;
|
||||
public $menu_priority;
|
||||
public $menu_classes;
|
||||
public $submenu;
|
||||
|
||||
private $r;
|
||||
|
@ -118,7 +118,7 @@ function getMenu()
|
||||
{
|
||||
while($arr[$menu_priority])
|
||||
$menu_priority++;
|
||||
$arr[$menu_priority] = array('text'=>$menu_text,'image'=>$instance->menu_image, 'url'=>$file,'menu_class'=>$instance->menu_class,'submenu'=>$instance->submenu);
|
||||
$arr[$menu_priority] = array('text'=>$menu_text,'image'=>$instance->menu_image, 'url'=>$file,'menu_classes'=>$instance->menu_classes,'submenu'=>$instance->submenu);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -28,7 +28,7 @@
|
||||
</div>
|
||||
<!-- Modal footer -->
|
||||
<div class="flex items-center p-6 space-x-2 border-t border-gray-200 rounded-b dark:border-gray-600">
|
||||
<button type="submit" class="text-white bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800">Save</button>
|
||||
<button type="submit" class="btn btn-primary">Save</button>
|
||||
<div id="response"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
27
web/pages/demo/controller.php
Normal file
27
web/pages/demo/controller.php
Normal file
@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
|
||||
class Demo extends Page{
|
||||
function setMenu()
|
||||
{
|
||||
$this->menu_text = 'Demo';
|
||||
$this->menu_image = 'fas fa-do';
|
||||
$this->menu_priority = 5;
|
||||
}
|
||||
|
||||
function setSubmenu()
|
||||
{
|
||||
//$this->addSubmenuItem('Hunde anzeigen','/dogs','far fa-list-alt');
|
||||
//$this->addSubmenuItem('Hund hinzufügen','/dogs/add','fas fa-plus-circle');
|
||||
}
|
||||
|
||||
function index()
|
||||
{
|
||||
$this->set('successTitle','Erfolgreich');
|
||||
$this->set('successMessage','Text davon');
|
||||
|
||||
$this->set('errorMessage','Fehler ohne Titel');
|
||||
|
||||
$this->set('template','demo.html');
|
||||
}
|
||||
}
|
3
web/pages/demo/demo.html
Normal file
3
web/pages/demo/demo.html
Normal file
@ -0,0 +1,3 @@
|
||||
<?php include(ROOT.'/templates/partials/success.html') ?>
|
||||
|
||||
<?php include(ROOT.'/templates/partials/error.html') ?>
|
@ -5,7 +5,9 @@ class Login extends Page {
|
||||
function setMenu()
|
||||
{
|
||||
if($_SESSION['user'])
|
||||
{
|
||||
$this->menu_text = $_SESSION['userid'];
|
||||
}
|
||||
else
|
||||
$this->menu_text = 'Login';
|
||||
$this->menu_image = 'far fa-user';
|
||||
@ -25,7 +27,7 @@ class Login extends Page {
|
||||
|
||||
function index()
|
||||
{
|
||||
$this->set('hello','world');
|
||||
|
||||
$this->set('template', 'login.html');
|
||||
//return print_r($_REQUEST, true);
|
||||
}
|
||||
@ -47,11 +49,48 @@ class Login extends Page {
|
||||
|
||||
function validate()
|
||||
{
|
||||
$email = $_REQUEST['email'];
|
||||
$password = $_REQUEST['password'];
|
||||
$email = trim($_REQUEST['email']);
|
||||
$password = trim($_REQUEST['password']);
|
||||
$remember = $_REQUEST['remember'];
|
||||
|
||||
return print_r(['email'=>$email,'password'=>$password,'remember'=>$remember], true);
|
||||
$error = false;
|
||||
|
||||
$u = new User();
|
||||
|
||||
if(!$email || !$password)
|
||||
$error = 'Bitte gib deine E-Mail-Adresse und dein Passwort ein';
|
||||
else if(!filter_var($email, FILTER_VALIDATE_EMAIL))
|
||||
$error = 'Bitte gib eine gültige E-Mail-Adresse ein';
|
||||
else if(!$u->exists($email))
|
||||
$error = 'Benutzer nicht gefunden. Schon registriert?';
|
||||
else {
|
||||
|
||||
try{
|
||||
$u->load($email);
|
||||
}
|
||||
catch(Exception $e){
|
||||
$error = $e->getMessage();
|
||||
}
|
||||
if(!password_verify($password, $u->data['password']))
|
||||
$error = 'E-Mail-Adresse oder Passwort falsch';
|
||||
else if($u->data['active'] == 0)
|
||||
$error = 'Dein Account ist noch nicht aktiviert';
|
||||
else
|
||||
{
|
||||
$u->login();
|
||||
$this->redirect('/');
|
||||
}
|
||||
}
|
||||
|
||||
if($error)
|
||||
{
|
||||
$this->set('template', '/templates/partials/error.html');
|
||||
$this->set('errorTitle', 'Error');
|
||||
$this->set('errorMessage', $error);
|
||||
}
|
||||
|
||||
|
||||
//return print_r(['email'=>$email,'password'=>$password,'remember'=>$remember], true);
|
||||
}
|
||||
|
||||
}
|
@ -1,39 +1,20 @@
|
||||
<div class="flex flex-col items-center justify-center px-6 py-8 mx-auto lg:py-0">
|
||||
<div class="w-full bg-white rounded-lg shadow dark:border md:mt-0 sm:max-w-md xl:p-0 dark:bg-gray-800 dark:border-gray-700">
|
||||
<div class="p-6 space-y-4 md:space-y-6 sm:p-8">
|
||||
<h1 class="text-xl font-bold leading-tight tracking-tight text-gray-900 md:text-2xl dark:text-white">
|
||||
Sign in to your account
|
||||
</h1>
|
||||
<div id="response" class="text-gray-900 dark:text-white">
|
||||
<?= $hello ?>
|
||||
</div>
|
||||
<form class="space-y-4 md:space-y-6" hx-post="/login/validate" hx-target="#response">
|
||||
<div>
|
||||
<label for="email" class="block mb-2 text-sm font-medium text-gray-900 dark:text-white">Your email</label>
|
||||
<input type="email" name="email" id="email" class="bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg focus:ring-primary-600 focus:border-primary-600 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" placeholder="name@company.com" required="">
|
||||
</div>
|
||||
<div>
|
||||
<label for="password" class="block mb-2 text-sm font-medium text-gray-900 dark:text-white">Password</label>
|
||||
<input type="password" name="password" id="password" placeholder="••••••••" class="bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg focus:ring-primary-600 focus:border-primary-600 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" required="">
|
||||
</div>
|
||||
<div class="flex items-center justify-between">
|
||||
<div class="flex items-start">
|
||||
<div class="flex items-center h-5">
|
||||
<input id="remember" name="remember" aria-describedby="remember" type="checkbox" value="true" class="w-4 h-4 border border-gray-300 rounded bg-gray-50 focus:ring-3 focus:ring-primary-300 dark:bg-gray-700 dark:border-gray-600 dark:focus:ring-primary-600 dark:ring-offset-gray-800">
|
||||
</div>
|
||||
<div class="ml-3 text-sm">
|
||||
<label for="remember" class="text-gray-500 dark:text-gray-300">Remember me</label>
|
||||
</div>
|
||||
</div>
|
||||
<a href="#" class="text-sm font-medium text-primary-600 hover:underline dark:text-primary-500 dark:text-gray-400">Forgot password?</a>
|
||||
</div>
|
||||
<button type="submit" class="bg-sky-500 hover:bg-sky-700 p-2 rounded">
|
||||
Sign in
|
||||
</button>
|
||||
<p class="text-sm font-light text-gray-500 dark:text-gray-400">
|
||||
Don’t have an account yet? <a href="#" hx-get="/register" hx-push-url="/register" hx-target="#main" class="font-medium text-primary-600 hover:underline dark:text-primary-500">Sign up</a>
|
||||
</p>
|
||||
</form>
|
||||
</div>
|
||||
<form class="space-y-4 md:space-y-6" hx-post="/login/validate" hx-target="#response">
|
||||
<div id="response" class="text-gray-900 dark:text-white"></div>
|
||||
<div class="form-group">
|
||||
<label for="exampleInputEmail1">Email address</label>
|
||||
<input name="email" type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
|
||||
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="exampleInputPassword1">Password</label>
|
||||
<input name="password" type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
|
||||
</div>
|
||||
<div class="form-group form-check">
|
||||
<input name="remember" type="checkbox" class="form-check-input" id="exampleCheck1">
|
||||
<label class="form-check-label" for="exampleCheck1">Remember me</label>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Submit</button>
|
||||
<p class="text-sm font-light text-gray-500 dark:text-gray-400">
|
||||
Don't have an account yet? <a href="#" hx-get="/register" hx-push-url="/register" hx-target="#main" class="font-medium text-primary-600 hover:underline dark:text-primary-500">Sign up</a>
|
||||
</p>
|
||||
</form>
|
||||
|
@ -1,28 +1,19 @@
|
||||
<div class="flex flex-col items-center justify-center px-6 py-8 mx-auto lg:py-0">
|
||||
<div class="w-full bg-white rounded-lg shadow dark:border md:mt-0 sm:max-w-md xl:p-0 dark:bg-gray-800 dark:border-gray-700">
|
||||
<div class="p-6 space-y-4 md:space-y-6 sm:p-8">
|
||||
<h1 class="text-xl font-bold leading-tight tracking-tight text-gray-900 md:text-2xl dark:text-white">
|
||||
Register
|
||||
</h1>
|
||||
<div id="response" class="text-gray-900 dark:text-white"></div>
|
||||
<form class="space-y-4 md:space-y-6" hx-post="/register/validate" hx-target="#response">
|
||||
<div>
|
||||
<label for="email" class="block mb-2 text-sm font-medium text-gray-900 dark:text-white">Your email</label>
|
||||
<input type="email" name="email" id="email" class="bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg focus:ring-primary-600 focus:border-primary-600 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" placeholder="name@company.com" required="">
|
||||
</div>
|
||||
<div>
|
||||
<label for="password" class="block mb-2 text-sm font-medium text-gray-900 dark:text-white">Password</label>
|
||||
<input type="password" name="password" id="password" placeholder="••••••••" class="bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg focus:ring-primary-600 focus:border-primary-600 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" required="">
|
||||
</div>
|
||||
<div>
|
||||
<label for="password2" class="block mb-2 text-sm font-medium text-gray-900 dark:text-white">Repeat Password</label>
|
||||
<input type="password" name="password2" id="password2" placeholder="••••••••" class="bg-gray-50 border border-gray-300 text-gray-900 sm:text-sm rounded-lg focus:ring-primary-600 focus:border-primary-600 block w-full p-2.5 dark:bg-gray-700 dark:border-gray-600 dark:placeholder-gray-400 dark:text-white dark:focus:ring-blue-500 dark:focus:border-blue-500" required="">
|
||||
</div>
|
||||
|
||||
<button type="submit" class="bg-sky-500 hover:bg-sky-700 p-2 rounded">
|
||||
Account erstellen
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
<h1>Registrieren</h1>
|
||||
|
||||
<form class="space-y-4 md:space-y-6" hx-post="/register/validate" hx-target="#response">
|
||||
<div id="response"></div>
|
||||
<div class="form-group">
|
||||
<label for="exampleInputEmail1">Email address</label>
|
||||
<input name="email" type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
|
||||
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="exampleInputPassword1">Passwort</label>
|
||||
<input name="password" type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="exampleInputPassword2">Passwort wiederholen</label>
|
||||
<input name="password2" type="password2" class="form-control" id="exampleInputPassword2" placeholder="Password">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Submit</button>
|
||||
</form>
|
||||
|
@ -15,8 +15,8 @@
|
||||
<body>
|
||||
<?php include(ROOT."/templates/menu.html") ?>
|
||||
|
||||
<main id="main" class="container" hx-get="/" hx-trigger="load" hx-indicator="#spinner">
|
||||
<i id="spinner" class="fa-solid fa-spinner"></i>
|
||||
<main id="main" class="container" hx-get="/" hx-trigger="load">
|
||||
|
||||
</main>
|
||||
|
||||
<script src="/js/htmx.min.js"></script>
|
||||
|
@ -15,7 +15,7 @@
|
||||
<li <?php if (count($item['submenu'])) : ?>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<a class="nav-link dropdown-toggle <?= $item['menu_classes'] ?>" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
||||
<?= $item['text']?>
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
@ -34,7 +34,7 @@
|
||||
</li>
|
||||
<?php else : ?>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" aria-current="page" href="/<?= $item['url'] ?>" hx-push-url="/<?= $item['url'] ?>" hx-get="/<?= $item['url'] ?>" hx-target="#main">
|
||||
<a class="nav-link <?= $item['menu_classes'] ?>" aria-current="page" href="/<?= $item['url'] ?>" hx-push-url="/<?= $item['url'] ?>" hx-get="/<?= $item['url'] ?>" hx-target="#main">
|
||||
<i class="<?= $item['image'] ?>"></i>
|
||||
<?= $item['text'] ?>
|
||||
</a>
|
||||
|
@ -1,4 +1,6 @@
|
||||
<div class="bg-red-100 border-l-4 border-red-500 text-red-700 p-4 animate__animated animate__fadeInDown" role="alert">
|
||||
<p class="font-bold"><?= $errorTitle ?></p>
|
||||
<p><?= $errorMessage ?></p>
|
||||
</div>
|
||||
<div class="alert alert-danger" role="alert">
|
||||
<?php if($errorTitle) : ?>
|
||||
<h4 class="alert-heading"><?= $errorTitle ?></h4>
|
||||
<?php endif; ?>
|
||||
<?= $errorMessage ?>
|
||||
</div>
|
@ -1,4 +1,6 @@
|
||||
<div class="bg-blue-100 border-l-4 border-blue-500 text-blue-700 p-4 animate__animated animate__fadeInDown" role="alert">
|
||||
<p class="font-bold"><?= $infoTitle ?></p>
|
||||
<p><?= $infoMessage ?></p>
|
||||
</div>
|
||||
<div class="alert alert-info" role="alert">
|
||||
<?php if($infoTitle) : ?>
|
||||
<h4 class="alert-heading"><?= $infoTitle ?></h4>
|
||||
<?php endif; ?>
|
||||
<?= $infoMessage ?>
|
||||
</div>
|
@ -1,4 +1,6 @@
|
||||
<div class="bg-orange-100 border-l-4 border-orange-500 text-orange-700 p-4 animate__animated animate__fadeInDown" role="alert">
|
||||
<p class="font-bold"><?= $title ?></p>
|
||||
<p><?= $message ?></p>
|
||||
</div>
|
||||
<div class="alert alert-warning" role="alert">
|
||||
<?php if($noticeTitle) : ?>
|
||||
<h4 class="alert-heading"><?= $noticeTitle ?></h4>
|
||||
<?php endif; ?>
|
||||
<?= $noticeMessage ?>
|
||||
</div>
|
@ -1,4 +1,6 @@
|
||||
<div class="bg-green-100 border-l-4 border-green-500 text-green-700 p-4 animate__animated animate__fadeInDown" role="alert">
|
||||
<p class="font-bold"><?= $successTitle ?></p>
|
||||
<p><?= $successMessage ?></p>
|
||||
</div>
|
||||
<div class="alert alert-success" role="alert">
|
||||
<?php if($successTitle) : ?>
|
||||
<h4 class="alert-heading"><?= $successTitle ?></h4>
|
||||
<?php endif; ?>
|
||||
<?= $successMessage ?>
|
||||
</div>
|
Reference in New Issue
Block a user