*** empty log message ***
This commit is contained in:
parent
0b40c0354f
commit
eb04497ea9
@ -44,50 +44,80 @@
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="prenom">
|
<tr id="prenom">
|
||||||
<input type="text" name="prenom" size="30" />
|
<script language="php">
|
||||||
|
print '<input type="text" name="prenom" size="30" value="'.$HTTP_POST_VARS["prenom"].'">';
|
||||||
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="nom">
|
<tr id="nom">
|
||||||
<input type="text" name="nom" size="40" />
|
<script language="php">
|
||||||
|
print '<input type="text" name="nom" size="40" value="'.$HTTP_POST_VARS["nom"].'">';
|
||||||
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="societe">
|
<tr id="societe">
|
||||||
<input type="text" name="societe" size="40" />
|
<script language="php">
|
||||||
|
print '<input type="text" name="societe" size="40" value="'.$HTTP_POST_VARS["societe"].'">';
|
||||||
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="adresse">
|
<tr id="adresse">
|
||||||
<textarea name="adresse" wrap="soft" cols="40" rows="3"></textarea>
|
<script language="php">
|
||||||
|
print '<textarea name="adresse" wrap="soft" cols="40" rows="3">'.$HTTP_POST_VARS["adresse"].'</textarea>';
|
||||||
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="cp">
|
<tr id="cp">
|
||||||
<input type="text" name="cp" size="8" />
|
<script language="php">
|
||||||
|
print '<input type="text" name="cp" size="8" value="'.$HTTP_POST_VARS["cp"].'">';
|
||||||
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="ville">
|
<tr id="ville">
|
||||||
<input type="text" name="ville" size="30" />
|
<script language="php">
|
||||||
|
print '<input type="text" name="ville" size="30" value="'.$HTTP_POST_VARS["ville"].'">';
|
||||||
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="pays">
|
<tr id="pays">
|
||||||
<input type="text" name="pays" size="25" value="France"/>
|
<script language="php">
|
||||||
|
print '<input type="text" name="pays" size="40" value="'.$HTTP_POST_VARS["pays"].'">';
|
||||||
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="email">
|
<tr id="email">
|
||||||
<input type="text" name="email" size="50" />
|
<script language="php">
|
||||||
|
print '<input type="text" name="email" size="50" value="'.$HTTP_POST_VARS["email"].'">';
|
||||||
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="montant">
|
<tr id="montant">
|
||||||
<input type="text" name="montant" size="10" />
|
<script language="php">
|
||||||
|
print '<input type="text" name="montant" size="10" value="'.$HTTP_POST_VARS["montant"].'">';
|
||||||
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="public">
|
<tr id="public">
|
||||||
<select name="public">
|
<select name="public">
|
||||||
<option value="1">oui/yes</option>
|
<script language="php">
|
||||||
<option value="0">non/no</option>
|
if ($HTTP_POST_VARS["public"] == 0)
|
||||||
|
{
|
||||||
|
print '<option value="1">oui/yes</option>';
|
||||||
|
print '<option value="0" SELECTED>non/no</option>';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print '<option value="1" SELECTED>oui/yes</option>';
|
||||||
|
print '<option value="0">non/no</option>';
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</select>
|
</select>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="commentaire">
|
<tr id="commentaire">
|
||||||
<textarea name="commentaire" wrap="soft" cols="40" rows="6"></textarea>
|
<script language="php">
|
||||||
|
print '<textarea name="commentaire" wrap="soft" cols="40" rows="6">'.$HTTP_POST_VARS["commentaire"].'</textarea>';
|
||||||
|
</script>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@ -59,7 +59,7 @@ if ($conf->don->enabled)
|
|||||||
require("erreur.php");
|
require("erreur.php");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elseif ($HTTP_POST_VARS["action"] == 'valid')
|
elseif ($HTTP_POST_VARS["action"] == 'valid' && $HTTP_POST_VARS["submit"] == 'Valider')
|
||||||
{
|
{
|
||||||
|
|
||||||
if ($don->check($conf->don->minimum))
|
if ($don->check($conf->don->minimum))
|
||||||
|
|||||||
@ -103,6 +103,9 @@
|
|||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="3" align="center" class="titre">
|
<td colspan="3" align="center" class="titre">
|
||||||
|
<!--
|
||||||
|
// Ne pas changer la value du bouton Valider, la valeur est utilisée dans index.php
|
||||||
|
-->
|
||||||
<input type="submit" value="Valider" /> <input type="submit" value="Corriger" /> (étape 2/3)
|
<input type="submit" value="Valider" /> <input type="submit" value="Corriger" /> (étape 2/3)
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user