Commit | Line | Data |
---|---|---|
c495c100 P |
1 | <?php |
2 | ||
3 | /***************************************************************************\ | |
4 | * SPIP, Systeme de publication pour l'internet * | |
5 | * * | |
6 | * Copyright (c) 2001-2007 * | |
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 | if (!defined("_ECRIRE_INC_VERSION")) return; | |
14 | ||
15 | include_spip('balise/formulaire_inscription'); | |
16 | include_spip('public/assembler'); | |
17 | include_spip('inc/lang'); | |
18 | include_spip('inc/headers'); | |
19 | ||
20 | // http://doc.spip.org/@action_inscription_dist | |
21 | function action_inscription_dist() { | |
22 | ||
23 | utiliser_langue_visiteur(); | |
24 | http_no_cache(); | |
25 | ||
26 | echo _DOCTYPE_ECRIRE, | |
27 | html_lang_attributes(), | |
28 | '<head><title>', | |
29 | _T('pass_vousinscrire'), | |
30 | '</title>', | |
31 | '<link rel="stylesheet" type="text/css" href="', | |
32 | find_in_path('spip_style.css'), | |
33 | '"></head><body>'; | |
34 | ||
35 | inclure_balise_dynamique(balise_FORMULAIRE_INSCRIPTION_dyn(_request('mode'), _request('focus'), _request('id_rubrique'))); | |
36 | echo "</body></html>"; | |
37 | } | |
38 | ||
39 | ?> |