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.
31 lines
987 B
31 lines
987 B
<!DOCTYPE html>
|
|
<html>
|
|
<header>
|
|
<h2>Private Lists</h2>
|
|
<form method="POST" name="goBackHome" id="Go Home">
|
|
<input type="submit" value="Home Page"/>
|
|
<input type="hidden" name="action" value="goHome"/>
|
|
</form>
|
|
</header>
|
|
<body>
|
|
<div>
|
|
|
|
<?php
|
|
if(isset($dataView)) {
|
|
foreach ($dataView as $liste){
|
|
echo '
|
|
<div>
|
|
<form method="post" name="accessList" id="accessList">
|
|
<p>• '.$liste->nom.'
|
|
<input type="submit" value="View List"/></p>
|
|
<input type="hidden" name="action" value="accessListInfos"/>
|
|
<input type="hidden" name="liste" value="'.$liste->id.'"/>
|
|
</form>
|
|
</div>';
|
|
}
|
|
}
|
|
?>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|