mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-02-08 00:52:01 +01:00
*** empty log message ***
This commit is contained in:
@@ -44,50 +44,80 @@
|
||||
</tr>
|
||||
|
||||
<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 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 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 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 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 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 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 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 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 id="public">
|
||||
<select name="public">
|
||||
<option value="1">oui/yes</option>
|
||||
<option value="0">non/no</option>
|
||||
<script language="php">
|
||||
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>
|
||||
</tr>
|
||||
|
||||
<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>
|
||||
|
||||
@@ -59,7 +59,7 @@ if ($conf->don->enabled)
|
||||
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))
|
||||
|
||||
@@ -103,6 +103,9 @@
|
||||
|
||||
<tr>
|
||||
<td colspan="3" align="center" class="titre">
|
||||
<!--
|
||||
// Ne pas changer la value du bouton Valider, la valeur est utilis<69>e dans index.php
|
||||
-->
|
||||
<input type="submit" value="Valider" /> <input type="submit" value="Corriger" /> (<28>tape 2/3)
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user