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
1.1 KiB
31 lines
1.1 KiB
<!doctype html>
|
|
<link href="css/administration.css" rel="stylesheet" type="text/css">
|
|
<html>
|
|
<div id="pageRight">
|
|
<div id="listSources">
|
|
<div>
|
|
<?php
|
|
foreach ($listeSources as $n){
|
|
echo "<div class=source>";
|
|
echo "<p id=link>";
|
|
echo $n->getlink();
|
|
echo "</p>";
|
|
echo "</div>";
|
|
}
|
|
?>
|
|
</div>
|
|
<div id="listSourceBottom">
|
|
<form action="../index.php?action=ajoutSource" method="POST">
|
|
<input type="text" name="linkSource" placeholder="source" />
|
|
<input type="submit" value="add source">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div id="refresh">
|
|
<form action="index.php">
|
|
<input type="hidden" name="action" value="refreshData">
|
|
<input type="submit" id="buttonRefresh" value="refresh">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</html>
|