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.

37 lines
803 B

<!DOCTYPE html>
<html>
<head>
<title>Ajouter une Liste</title>
<link rel="stylesheet" href="Style/bootstrap.css">
<link rel="stylesheet" href="Style/add.css">
</head>
<body>
<div class="container">
<h2>Modifier Liste</h2>
<form method="POST" name="addList" id="addList">
<div class="group">
<input type="text" name="name" value="<?=$dataView->getName()?>" required>
<span class="highlight"></span>
<span class="bar"></span>
</div>
<?php
if(!empty($dVueEreur)){
echo '<h4 id="error">'.$dVueEreur[0].'</h4>';
}
?>
<input type="submit" value="Submit"/>
<input type="hidden" name='list' value="<?=$dataView->getId()?>"/>
<input type="hidden" name="action" value="modifyPublicList"/>
</form>
</div>
</body>