feat: finish page styling and todo
This commit is contained in:
parent
ec0f77a45c
commit
c792dd66ab
@ -1,6 +1,5 @@
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #f4f4f4;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
@ -13,11 +13,6 @@ function ajoutTache() {
|
||||
var tacheDiv = document.createElement("div");
|
||||
tacheDiv.className = "task"; //mise en forme css
|
||||
|
||||
// Créer un élément <span> pour afficher la tâche
|
||||
var tacheSpan = document.createElement("span");
|
||||
tacheSpan.textContent = tache; //récupère texte saisi dans la zone de texte tacheInput
|
||||
tacheDiv.appendChild(tacheSpan); //pour afficher à la suite
|
||||
|
||||
// Créer une checkbox pour marquer la tâche comme terminée
|
||||
var checkbox = document.createElement("input");
|
||||
checkbox.type = "checkbox";
|
||||
@ -26,6 +21,11 @@ function ajoutTache() {
|
||||
};
|
||||
tacheDiv.appendChild(checkbox);
|
||||
|
||||
// Créer un élément <span> pour afficher la tâche
|
||||
var tacheSpan = document.createElement("span");
|
||||
tacheSpan.textContent = tache; //récupère texte saisi dans la zone de texte tacheInput
|
||||
tacheDiv.appendChild(tacheSpan); //pour afficher à la suite
|
||||
|
||||
// Ajouter un bouton "Supprimer"
|
||||
var suppButton = document.createElement("button");
|
||||
suppButton.textContent = "Supprimer";
|
||||
|
@ -1,6 +1,5 @@
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #f4f4f4;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
@ -13,11 +13,6 @@ function ajoutTache() {
|
||||
var tacheDiv = document.createElement("div");
|
||||
tacheDiv.className = "task"; //mise en forme css
|
||||
|
||||
// Créer un élément <span> pour afficher la tâche
|
||||
var tacheSpan = document.createElement("span");
|
||||
tacheSpan.textContent = tache; //récupère texte saisi dans la zone de texte tacheInput
|
||||
tacheDiv.appendChild(tacheSpan); //pour afficher à la suite
|
||||
|
||||
// Créer une checkbox pour marquer la tâche comme terminée
|
||||
var checkbox = document.createElement("input");
|
||||
checkbox.type = "checkbox";
|
||||
@ -26,6 +21,11 @@ function ajoutTache() {
|
||||
};
|
||||
tacheDiv.appendChild(checkbox);
|
||||
|
||||
// Créer un élément <span> pour afficher la tâche
|
||||
var tacheSpan = document.createElement("span");
|
||||
tacheSpan.textContent = tache; //récupère texte saisi dans la zone de texte tacheInput
|
||||
tacheDiv.appendChild(tacheSpan); //pour afficher à la suite
|
||||
|
||||
// Ajouter un bouton "Supprimer"
|
||||
var suppButton = document.createElement("button");
|
||||
suppButton.textContent = "Supprimer";
|
||||
|
@ -7,7 +7,6 @@
|
||||
@vite('resources/css/app.css')
|
||||
</head>
|
||||
<body>
|
||||
<h1>About</h1>
|
||||
@include('menu')
|
||||
</body>
|
||||
</html>
|
@ -1,7 +1,6 @@
|
||||
<main>
|
||||
<h1>Menu</h1>
|
||||
<div class="flex flex-col">
|
||||
<main class="w-screen h-[4dvh] absolute top-0 flex space-x-[1dvw] text-[2dvh] p-[15px]">
|
||||
<a href="">></a>
|
||||
<a href="{{ route('route0') }}">Home</a>
|
||||
<a href="{{ route('route1') }}">About</a>
|
||||
</div>
|
||||
<a href="{{ route('route2') }}">Todo</a>
|
||||
</main>
|
@ -5,15 +5,16 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
@vite('resources/css/app.css')
|
||||
@vite('resources/css/todo.css')
|
||||
<link href="{{ asset('css/todo.css') }}" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>Ma Liste</h1>
|
||||
<input type="text" id="tacheInput" placeholder="Ajouter une tâche...">
|
||||
@include('menu')
|
||||
<div class="w-screen h-screen grid place-items-center">
|
||||
<div class="flex">
|
||||
<input class="border-2" type="text" id="tacheInput" placeholder="Ajouter une tâche...">
|
||||
<button onclick="ajoutTache()">Ajouter</button>
|
||||
<div id="listeTache"></div>
|
||||
</div>
|
||||
<div id="listeTache" class="w-[30dvw] h-[70dvh] overflow-y-scroll"></div>
|
||||
</div>
|
||||
<script src="{{ asset('js/todo.js')}}"></script>
|
||||
</body>
|
||||
|
@ -6,7 +6,12 @@
|
||||
@vite('resources/css/app.css')
|
||||
</head>
|
||||
<body>
|
||||
<h1>Bienvenue sur la page d'accueil</h1>
|
||||
@include('menu')
|
||||
<div class="w-screen h-screen grid place-items-center">
|
||||
<div class="flex flex-col place-items-center">
|
||||
<img width="200px" src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/9a/Laravel.svg/1200px-Laravel.svg.png" alt="">
|
||||
<h1 class="text-[5dvh]">Bienvenue sur la page d'accueil</h1>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user