13 lines
271 B
PHP
13 lines
271 B
PHP
|
<?php
|
||
|
$user = $_GET["user"];
|
||
|
?>
|
||
|
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>e-Mail Verification</title>
|
||
|
</head> <body>
|
||
|
<?php
|
||
|
echo "<p>Bitte senden sie nun zur Verifikation eine e-Mail mit folgendem Inhalt an \"authentication@lostcave.ddnss.de\":</p>";
|
||
|
echo "<p>Blub Blub $user</p>";
|
||
|
?>
|
||
|
</html>
|