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.
50 lines
1.1 KiB
50 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Ajouter une Tache</title>
|
|
<link rel="stylesheet" href="Style/bootstrap.css">
|
|
<link rel="stylesheet" href="Style/add.css">
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
|
|
|
<div class="container">
|
|
|
|
<h2>Ajouter une tâche</h2>
|
|
|
|
<form method="post" name="addTask" id="addTask">
|
|
|
|
<div class="group">
|
|
<input type="text" name="name" placeholder="Task name" required>
|
|
<span class="highlight"></span>
|
|
<span class="bar"></span>
|
|
</div>
|
|
|
|
<div class="group">
|
|
<input type="text" name="content" placeholder="content" required>
|
|
<span class="highlight"></span>
|
|
<span class="bar"></span>
|
|
</div>
|
|
|
|
<div class="check">
|
|
<text>Complete</text>
|
|
<input type="checkbox" name="completed"></input>
|
|
</div>
|
|
|
|
<?php
|
|
if(!empty($dVueEreur)){
|
|
echo '<h4 id="error">'.$dVueEreur[0].'</h4>';
|
|
}
|
|
?>
|
|
|
|
<input type="submit" value="Submit"/>
|
|
<input type="hidden" name="action" value="addTask"/>
|
|
<input type="hidden" name="list" value="<?=$dataView?>"/>
|
|
|
|
</form>
|
|
</div>
|
|
|
|
|
|
</body>
|