62 lines
No EOL
2.2 KiB
PHP
62 lines
No EOL
2.2 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<?php
|
|
$lang = $_GET['lang'] ?? $lang = "de";
|
|
$text = json_decode(file_get_contents("languages/$lang.json"), true);
|
|
$title = $text["title"];
|
|
$about = $text["about"];
|
|
$subject_placeholder = $text["subject_placeholder"];
|
|
$message_placeholder = $text["message_placeholder"];
|
|
$send_button = $text["send_button"];
|
|
$go_back = $text["go_back"];
|
|
|
|
$recipient = $text["recipient"];
|
|
|
|
if (isset($_POST["submit"])) {
|
|
$subject = "[Kummerkasten] " . $_POST["subject"];
|
|
$message = $_POST["message"];
|
|
if (mail($recipient, $subject, $message)) {
|
|
header("Location: success.php?lang=$lang");
|
|
} else {
|
|
header("Location: failed.php?lang=$lang");
|
|
}
|
|
die();
|
|
}
|
|
?>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
|
|
<title id="page_title"><?php echo $title; ?></title>
|
|
<link rel="shortcut icon" href="favicon.svg" />
|
|
<link rel="icon" href="favicon.svg" type="image/svg+xml">
|
|
<link rel="stylesheet" href="index.css">
|
|
</head>
|
|
|
|
<body>
|
|
<header class="header">
|
|
<nav class="header-inner">
|
|
<div class="header-top">
|
|
<a class="header-element" href="https://fs-informatik.uni-kiel.de/">
|
|
<img src="logo.svg">
|
|
</a>
|
|
<a class="header-element" href="https://www.fs-infmath.uni-kiel.de/kummerkasten/">
|
|
<h1 id="title"><?php echo $title; ?></h1>
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
<p id="about" class="infobox"><?php echo $about; ?></p>
|
|
<form action="<?php echo $_SERVER["PHP_SELF"] . '?' . http_build_query($_GET); ?>" method="post">
|
|
<input type="text" id="subject" name="subject" placeholder="<?php echo $subject_placeholder; ?>"></input>
|
|
<textarea id="message" name="message" placeholder="<?php echo $message_placeholder; ?>" rows="15"></textarea>
|
|
<button class="btn btn-primary" type="submit" name="submit"><?php echo $send_button; ?></button>
|
|
</form>
|
|
<p>
|
|
<a href="https://www.fs-infmath.uni-kiel.de/wiki/Hauptseite" id="go_back"
|
|
class="link-button"><?php echo $go_back; ?></a>
|
|
</p>
|
|
</body>
|
|
|
|
</html>
|