new list view

list-Gtw-Mdl
Nicolas FRANCO 2 years ago
parent 6aed35dd16
commit f70defe12d

@ -24,7 +24,7 @@ foreach($tasks as $i)
# Test du modele Tache
$mt= new TaskModel($con);
//$mt->addTask('6','tacheModel','desc.','urgent','001');
$mt->addTask('6','tacheModel','desc.','urgent','001');
//$tasks = $mt->getTaskBy('titre','tache1');
//$tasks = $mt->getAllTask();
/*foreachh($tasks as $i)

@ -4,7 +4,7 @@
<link rel="stylesheet" href="authentification.css">
</head>
<body>
<h1>Magnifique To do list</h1>
<h1>2do, an amazing todo list 4 you!</h1>
<form action="authentification.php" method="POST">
<label>Login</label>
<input type="text" name="login" placeholder="Saisissez votre login" required />
@ -15,4 +15,4 @@
</div>
</form>
</body>
</html>
</html>

@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous">
</head>
<body>
<section class="vh-100" style="background-color: #eee;">
<div class="container py-5 h-100">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col col-lg-9 col-xl-7">
<div class="card rounded-3"><div class="card rounded-3">
<div class="card-body p-4">
<h4 class="text-center my-3 pb-3">New List</h4>
<form class="row row-cols-lg-auto g-3 justify-content-center align-items-center mb-4 pb-2">
<div class="col-12">
<div class="form-outline">
<input type="text" id="form1" class="form-control" />
</div>
</div>
<div class="col-12">
<button type="submit" class="btn btn-primary">Save</button>
</div>
<div class="col-12">
<button type="submit" class="btn btn-primary">Make private &#128274;</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>
Loading…
Cancel
Save