Merge branch 'master' of https://codefirst.iut.uca.fr/git/bastien.ollier/flux_rss
commit
28316a6711
@ -1,31 +1,26 @@
|
|||||||
<!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>
|
||||||
<div id="pageRight">
|
<form action="index.php?action=ajoutSource" method="POST">
|
||||||
<div id="listSources">
|
<input type="text" name="linkSource" placeholder="source" />
|
||||||
<div>
|
<input type="submit" value="add source">
|
||||||
<?php
|
</form>
|
||||||
foreach ($listeSources as $n){
|
</html>
|
||||||
echo "<div class=source>";
|
|
||||||
echo "<p id=link>";
|
<?php
|
||||||
echo $n->getlink();
|
foreach ($listeSources as $n){
|
||||||
echo "</p>";
|
echo '<form action="index.php?action=supprimerSource&idSource='.$n->getlink().'">';
|
||||||
echo "</div>";
|
echo "<div class=source>";
|
||||||
}
|
echo "<p id=link>";
|
||||||
?>
|
echo $n->getlink();
|
||||||
</div>
|
echo "</p>";
|
||||||
<div id="listSourceBottom">
|
echo '<input type="submit" value="x">';
|
||||||
<form action="../index.php?action=ajoutSource" method="POST">
|
echo "</div>";
|
||||||
<input type="text" name="linkSource" placeholder="source" />
|
echo "</form>";
|
||||||
<input type="submit" value="add source">
|
}
|
||||||
</form>
|
?>
|
||||||
</div>
|
|
||||||
</div>
|
<form action="index.php">
|
||||||
<div id="refresh">
|
<input type="hidden" name="action" value="refreshData">
|
||||||
<form action="index.php">
|
<input type="submit" value="refresh">
|
||||||
<input type="hidden" name="action" value="refreshData">
|
</form>
|
||||||
<input type="submit" id="buttonRefresh" value="refresh">
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</html>
|
|
Loading…
Reference in new issue