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.
24 lines
722 B
24 lines
722 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Ajouter une Tache</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>
|
|
<input type="text" id="content" name="content" placeholder="content">
|
|
<br>
|
|
<button class="valider" onclick="location.href='page.php'">Valider</button>
|
|
|
|
</body> |