Possibility to modify the question -> NOT WORKING
This commit is contained in:
parent
65670dd09d
commit
7d249967d6
4 changed files with 37 additions and 8 deletions
|
|
@ -1,4 +1,4 @@
|
|||
1;3001;0c<!DOCTYPE html>
|
||||
<!DOCTYPE html>
|
||||
|
||||
<?php
|
||||
include("Question.class.php");
|
||||
|
|
@ -13,7 +13,7 @@ $question = $file->get_question($id);
|
|||
<html>
|
||||
<head>
|
||||
<meta charset="utf8" />
|
||||
<link rel="Stylesheet" href="styleConfirmation.css" />
|
||||
<link rel="Stylesheet" href="style.css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
@ -26,9 +26,10 @@ $question = $file->get_question($id);
|
|||
</div>
|
||||
</header>
|
||||
|
||||
<section>
|
||||
<h1>Validation de la question</h1>
|
||||
<h3>Rappel de la question</h3>
|
||||
<section id="introduction">
|
||||
<article>
|
||||
<h2>Validation de la question</h2>
|
||||
<strong>Rappel de la question</strong><br/><br/>
|
||||
<?php if (!$question)
|
||||
{
|
||||
echo "La question n'existe pas.";
|
||||
|
|
@ -44,7 +45,7 @@ else
|
|||
<a href='thanksValidation.php?id=<?php echo $question->getId() ?>'>
|
||||
Valider la question
|
||||
</a>
|
||||
|
||||
</article>
|
||||
</section>
|
||||
|
||||
</body>
|
||||
|
|
|
|||
Reference in a new issue