generated from Templates_CodeFirst/templateHtmlCss
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
754 B
27 lines
754 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Ajouter une Liste</title>
|
|
<link rel="stylesheet" href="Style/bootstrap.css">
|
|
<link rel="stylesheet" href="Style/mycoolstyle.css">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<ul class="navbar">
|
|
<li><button onclick="location.href='addList.php'" type="button" class="addList">Ajouter une Liste</button>
|
|
<li><button onclick="location.href='addTask.php'" type="button" class="addTask">Ajouter une Tache</button>
|
|
</ul>
|
|
|
|
<h1>Ajouter</h1>
|
|
|
|
<input type="text" id="name" name="name" placeholder="name">
|
|
<br>
|
|
<div>
|
|
Liste privee ?
|
|
<input type="checkbox" id="private" name="private">
|
|
</div>
|
|
<br>
|
|
<button class="valider" onclick="location.href='page.php'">Valider</button>
|
|
|
|
</body> |