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.
34 lines
1.1 KiB
34 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>creationTache</title>
|
|
<link rel="stylesheet" href="styles/commonStyles.css">
|
|
<link rel="stylesheet" href="styles/creationStyles.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<form method="POST" name="goBackHome" id="GoHome">
|
|
<input type="image" src="assets/logo.png"/>
|
|
<input type="hidden" name="action" value="goHome"/>
|
|
</form>
|
|
<h1>Create a new task</h1>
|
|
</header>
|
|
<div class="body">
|
|
<form method="post" name="creationForm" id="creationForm">
|
|
<h4>Name of the task</h4>
|
|
<input type="text" name="name" id="name" required/>
|
|
|
|
<br/>
|
|
<?php
|
|
if(!empty($vues_erreur)){
|
|
echo '<h4 id="error">'.$vues_erreur[0].'</h4>';
|
|
}
|
|
?>
|
|
|
|
<input class="button" type="submit" value="Create"/>
|
|
<input type="hidden" name="action" value="addTache"/>
|
|
<input type="hidden" name="liste" value="<?=$dataView?>"/>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|