Add new user - In progress
This commit is contained in:
parent
e81b201fd9
commit
1bdda247a3
45
subscribe.html
Normal file
45
subscribe.html
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf8" />
|
||||||
|
<link rel="Stylesheet" href="style.css" />
|
||||||
|
<title>Every AskWeb (BETA)</title>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<div id="main_title">
|
||||||
|
<a href="http://www.h2g2.com" target="_blank">
|
||||||
|
<img src="marvin-robot_normal.png" alt="" id="banner"/>
|
||||||
|
</a>
|
||||||
|
<h1>Nemubot AskWeb (BETA)</h1>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<section id="introduction">
|
||||||
|
<article id="left">
|
||||||
|
<h2>Inscription</h2>
|
||||||
|
<p>
|
||||||
|
Vous n'êtes pas encore inscrit sur le site mais rêvez de l'être ?
|
||||||
|
Pas de panique. Il vous suffit simplement de mettre votre email
|
||||||
|
dans le champs ci dessous.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Vous allez alors recevoir un email de confirmation.<br/>
|
||||||
|
Vous devez cliquer sur le lien d'activation pour confirmer
|
||||||
|
votre demande.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<form id="formulaire_email" method="post" action="subscribeAction.php">
|
||||||
|
<label for="email">Votre email : </label>
|
||||||
|
<input id="email" name="email" type="text" />
|
||||||
|
|
||||||
|
<input type="submit" name="send" value="Envoyer"/>
|
||||||
|
</form>
|
||||||
|
</article>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
32
subscribeAction.php
Normal file
32
subscribeAction.php
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
include("Question.class.php");
|
||||||
|
|
||||||
|
$email = $_GET['email'];
|
||||||
|
$subject = "[Nemubot] Confirmation d'inscription"
|
||||||
|
$headers = "From: Nemubot <bot@nemunai.re>\n";
|
||||||
|
$message = "Bonjour,\n"
|
||||||
|
."Vous avez demandé à être ajouté à la liste des participants "
|
||||||
|
."sur le site AskWeb.\n"
|
||||||
|
."Si c'est le cas, vous pouvez cliquer sur le lien suivant "
|
||||||
|
."pour confirmer :\n"
|
||||||
|
|
||||||
|
. "http://".$_SERVER["SERVER_NAME"]
|
||||||
|
. dirname($_SERVER["REQUEST_URI"]) . "subscribeConfirmation.php"
|
||||||
|
|
||||||
|
."\n\n Si ce n'est pas le cas, merci de supprimer cet email\n"
|
||||||
|
."Cordialement,\n\n"
|
||||||
|
."-- \nNemubot";
|
||||||
|
|
||||||
|
$question = new Question();
|
||||||
|
|
||||||
|
if ($question->mail_utf8($email, $subject, $message, $headers))
|
||||||
|
{
|
||||||
|
echo "email sent";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
echo "ERROR";
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
Reference in New Issue
Block a user