master
Jeremy DUCOURTHIAL 3 years ago
parent bba05f7414
commit e55ad39059

@ -15,10 +15,6 @@ html{
text-align: center; text-align: center;
} }
#pageRight{
}
#refresh{ #refresh{
margin: 10px; margin: 10px;
background-color: white; background-color: white;

@ -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…
Cancel
Save