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