summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xphp/footer.php1
-rwxr-xr-xphp/header.php2
-rwxr-xr-xphp/render.php1
-rwxr-xr-xsignup/signup.php1
-rwxr-xr-xsignup/verify/verify.php1
5 files changed, 5 insertions, 1 deletions
diff --git a/php/footer.php b/php/footer.php
index 652bf3e..2d7903d 100755
--- a/php/footer.php
+++ b/php/footer.php
@@ -28,4 +28,5 @@ $targets = [
$html = replace(ROOT . '/html/footer.html', $targets);
echo $html;
+
?>
diff --git a/php/header.php b/php/header.php
index 93cdbf9..37d0612 100755
--- a/php/header.php
+++ b/php/header.php
@@ -27,4 +27,4 @@ $html = replace(ROOT . '/html/header.html', $targets);
echo $html;
-?> \ No newline at end of file
+?>
diff --git a/php/render.php b/php/render.php
index 68d1b96..8e63247 100755
--- a/php/render.php
+++ b/php/render.php
@@ -35,4 +35,5 @@ function render_content(string $page) {
echo $main_html;
}
+
?>
diff --git a/signup/signup.php b/signup/signup.php
index 4300b61..a0d0dea 100755
--- a/signup/signup.php
+++ b/signup/signup.php
@@ -91,4 +91,5 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
exit;
}
}
+
?>
diff --git a/signup/verify/verify.php b/signup/verify/verify.php
index 1fc6202..471251d 100755
--- a/signup/verify/verify.php
+++ b/signup/verify/verify.php
@@ -97,4 +97,5 @@ if ($_SERVER["REQUEST_METHOD"] == "POST") {
header("Location: /signin");
}
+
?>