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.

51 lines
1.0 KiB

<!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 ($dataView->getPrivate()){
?>
<div class="check">
<text>Private</text>
<input type="checkbox" name="private" checked/>
</div>
<?php
}
else{
?>
<div class="check">
<text>Complete</text>
<input type="checkbox" name="private"/>
</div>
<?php
}
?>
<input type="submit" value="Submit"/>
<input type="hidden" name='list' value="<?=$dataView->getId()?>"/>
<input type="hidden" name="action" value="modifyPrivateList"/>
</form>
</div>
</body>