generated from Templates_CodeFirst/templateHtmlCss
parent
ca66e83744
commit
4b6516f520
@ -0,0 +1,51 @@
|
|||||||
|
<!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>
|
Loading…
Reference in new issue