4 |
david |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/***************************************************************************\
|
|
|
4 |
* SPIP, Systeme de publication pour l'internet *
|
|
|
5 |
* *
|
|
|
6 |
* Copyright (c) 2001-2005 *
|
|
|
7 |
* Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
|
|
|
8 |
* *
|
|
|
9 |
* Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
|
|
|
10 |
* Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
|
|
|
11 |
\***************************************************************************/
|
|
|
12 |
|
|
|
13 |
include ("ecrire/inc_version.php3");
|
|
|
14 |
include_ecrire("inc_presentation.php3");
|
|
|
15 |
include_local(find_in_path("inc-formulaire_inscription.php3"));
|
|
|
16 |
include_local("inc-public-global.php3");
|
|
|
17 |
include_local ("inc-cache.php3");
|
|
|
18 |
include_ecrire("inc_lang.php3");
|
|
|
19 |
|
|
|
20 |
utiliser_langue_site();
|
|
|
21 |
utiliser_langue_visiteur();
|
|
|
22 |
|
|
|
23 |
install_debut_html(_T('pass_vousinscrire'));
|
|
|
24 |
inclure_balise_dynamique(balise_formulaire_inscription_dyn($mode, $mail_inscription, $nom_inscription, $focus, $target));
|
|
|
25 |
# echo http_script_window_close(); # fait dans le squelette a present
|
|
|
26 |
install_fin_html();
|
|
|
27 |
?>
|