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.
42 lines
813 B
42 lines
813 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>Ajouter une liste</h2>
|
|
|
|
|
|
|
|
<form method="POST" name="addList" id="addList">
|
|
<div>
|
|
<input type="text" name="name" placeholder="List name" required>
|
|
<span class="highlight"></span>
|
|
<span class="bar"></span>
|
|
</div>
|
|
|
|
<div class="check">
|
|
<text>Private</text>
|
|
<input type="checkbox" name="private"/>
|
|
</div>
|
|
|
|
<?php
|
|
if(!empty($dVueEreur)){
|
|
echo '<h4 id="error">'.$dVueEreur[0].'</h4>';
|
|
}
|
|
?>
|
|
|
|
<input type="submit" value="Submit"/>
|
|
<input type="hidden" name="action" value="addPrivateList"/>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
</body>
|