Rev | Line | |
---|
[1] | 1 | <?php if($env->out["artiste"]["contact_form"] && $env->out["artiste"]["email_contact"]) : ?> |
---|
| 2 | <h3>Message pour <?= $env->out["artiste"]["nom"] ?></h3> |
---|
| 3 | |
---|
| 4 | <br /><br /> |
---|
| 5 | <form name="contact_form" |
---|
| 6 | action="<?= $env->url(array("e" => "artistes", "artiste" => $env->out["artiste"]["id"], "page" => "contact")) ?>" |
---|
| 7 | method="post"> |
---|
| 8 | <table class="admin"> |
---|
| 9 | <tr> |
---|
| 10 | <th>Votre email</th> |
---|
| 11 | <td><input type="text" name="from" size="30" value="<?= $_POST["from"] ?>" /></td> |
---|
| 12 | </tr> |
---|
| 13 | <tr> |
---|
| 14 | <th>Sujet</th> |
---|
| 15 | <td><input type="text" name="sujet" size="30" value="<?= $_POST["sujet"] ?>" /></td> |
---|
| 16 | </tr> |
---|
| 17 | <tr> |
---|
| 18 | <th>Message</th> |
---|
| 19 | <td><textarea name="message" cols="45" rows="15"><?= $_POST["message"] ?></textarea></td> |
---|
| 20 | </tr> |
---|
| 21 | <tr> |
---|
| 22 | <th>Anti-spam</th> |
---|
| 23 | <td> |
---|
| 24 | <p class="info"> |
---|
| 25 | <?=PtitCaptchaHelper::generateImgTags("./".$env->path("app")."plugins/")?> |
---|
| 26 | Recopiez ce que vous voyez sur l'image (cliquez dessus pour la changer) |
---|
| 27 | </p> |
---|
| 28 | <?=PtitCaptchaHelper::generateHiddenTags()?> |
---|
| 29 | <?=PtitCaptchaHelper::generateInputTags()?> |
---|
| 30 | </td> |
---|
| 31 | </tr> |
---|
| 32 | <tr> |
---|
| 33 | <td colspan="2" style="text-align: right"><input type="submit" value="Envoyer" /></td> |
---|
| 34 | </tr> |
---|
| 35 | </table> |
---|
| 36 | </form> |
---|
| 37 | <?php endif; ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.