Browse Source

Moved help-text #1 to top of form

master
Tobias Herre 2 years ago
parent
commit
305f4c9c48
  1. 8
      form.php
  2. 8
      index.php

8
form.php

@ -4,6 +4,14 @@
<p>
<?php echo _("Du möchtest dir Kosten erstatten lassen, welche im Rahmen deines Projektes entstanden sind?")?><BR>
<?php echo _("Bitte fülle dieses Formular aus. Pflichtfelder sind mit einem * gekennzeichnet.")?>
<?php
$ct = @file_get_contents( "./locale/$loc1/h1.php");
if ($ct==false)
$ct = file_get_contents( "h1.php");
echo $ct;
?>
</p>
<form data-kube="kaform" name="theform" id="theform" action="submit.php" method="POST">

8
index.php

@ -48,10 +48,10 @@
</div>
<div class="is-col is-30">
<?php
$ct = @file_get_contents( "./locale/$loc1/h1.php");
if ($ct==false)
$ct = file_get_contents( "h1.php");
echo $ct;
# $ct = @file_get_contents( "./locale/$loc1/h1.php");
# if ($ct==false)
# $ct = file_get_contents( "h1.php");
# echo $ct;
?>

Loading…
Cancel
Save