Browse Source

Moved help-text #1 to top of form

master
Tobias Herre 2 years ago
parent
commit
305f4c9c48
2 changed files with 12 additions and 4 deletions
  1. +8
    -0
      form.php
  2. +4
    -4
      index.php

+ 8
- 0
form.php View File

@ -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">

+ 4
- 4
index.php View File

@ -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