parent
bba05f7414
commit
e55ad39059
@ -1,23 +1,31 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<link href="css/administration.css" rel="stylesheet" type="text/css">
|
<link href="css/administration.css" rel="stylesheet" type="text/css">
|
||||||
<html>
|
<html>
|
||||||
<form action="index.php?action=ajoutSource" method="POST">
|
<div id="pageRight">
|
||||||
<input type="text" name="linkSource" placeholder="source" />
|
<div id="listSources">
|
||||||
<input type="submit" value="add source">
|
<div>
|
||||||
</form>
|
<?php
|
||||||
</html>
|
foreach ($listeSources as $n){
|
||||||
|
echo "<div class=source>";
|
||||||
<?php
|
echo "<p id=link>";
|
||||||
foreach ($listeSources as $n){
|
echo $n->getlink();
|
||||||
echo "<div class=source>";
|
echo "</p>";
|
||||||
echo "<p id=link>";
|
echo "</div>";
|
||||||
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" />
|
||||||
<form action="index.php">
|
<input type="submit" value="add source">
|
||||||
<input type="hidden" name="action" value="refreshData">
|
</form>
|
||||||
<input type="submit" value="refresh">
|
</div>
|
||||||
</form>
|
</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>
|
Loading…
Reference in new issue