Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 387 → Rev 388

/trunk/papyrus/applettes/identification/langues/iden_langue_fr.inc.php
21,7 → 21,7
// | along with Foobar; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: iden_langue_fr.inc.php,v 1.3 2005-04-14 16:37:27 jpm Exp $
// CVS : $Id: iden_langue_fr.inc.php,v 1.4 2005-06-02 11:56:00 jpm Exp $
/**
* Traduction de l'applette Identification : fr
*
34,7 → 34,7
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 2000-2005
*@version $Revision: 1.3 $ $Date: 2005-04-14 16:37:27 $
*@version $Revision: 1.4 $ $Date: 2005-06-02 11:56:00 $
// +------------------------------------------------------------------------------------------------------+
*/
 
48,7 → 48,7
// +------------------------------------------------------------------------------------------------------+
 
/** Message de bienvenu de l'identification.*/
define('IDEN_LG_MESSAGE', 'Bienvenue ! ');
define('IDEN_LG_MESSAGE', 'Votre identité');
/** Message indiquant le lien vers la page d'inscription.*/
define('IDEN_LG_INSCRIPTION_URL', 'S\'inscrire...');
/** Message indiquant le lien vers la page de modification de son inscription.*/
56,6 → 56,9
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.3 2005/04/14 16:37:27 jpm
* Ajout de la gestion de la modification de son inscription.
*
* Revision 1.2 2005/03/25 14:41:04 jpm
* Modification et ajout de constantes.
*
/trunk/papyrus/applettes/identification/identification.php
19,7 → 19,7
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: identification.php,v 1.14 2005-05-19 14:00:58 jpm Exp $
// CVS : $Id: identification.php,v 1.15 2005-06-02 11:56:00 jpm Exp $
/**
* Applette : identification
*
38,7 → 38,7
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.14 $ $Date: 2005-05-19 14:00:58 $
*@version $Revision: 1.15 $ $Date: 2005-06-02 11:56:00 $
// +------------------------------------------------------------------------------------------------------+
*/
 
138,13 → 138,7
}
if (! $objet_pear_auth->getAuth()) {
// L'utilisateur n'est pas identifié:
// Si l'url de la page d'inscription est stockée dans les paramêtres, nous l'affichons
if (isset($GLOBALS['_GEN_commun']['info_auth_bdd']->url_inscription)) {
$retour .= '<p><a id="lien_inscription" href="'.$GLOBALS['_GEN_commun']['info_auth_bdd']->url_inscription.'">'.
IDEN_LG_INSCRIPTION_URL.
'</a></p>'."\n";
}
// L'utilisateur n'est pas identifié:
$retour .= str_repeat(' ', 16).'<form id="form_connexion" class="form_identification" action="'.$url.'" method="post">'."\n";
$retour .= str_repeat(' ', 16).'<fieldset>'."\n";
$retour .= str_repeat(' ', 20).'<legend>'.'Identification'.'</legend>'."\n";
158,7 → 152,13
$retour .= str_repeat(' ', 20).''."\n";
$retour .= str_repeat(' ', 20).''."\n";
$retour .= str_repeat(' ', 24).'<input type="submit" id="connexion" name="connexion" tabindex="3" value="'.'ok'.'" />'."\n";
$retour .= str_repeat(' ', 20).''."\n";
$retour .= str_repeat(' ', 20).''."\n";
// Si l'url de la page d'inscription est stockée dans les paramêtres, nous l'affichons
if (isset($GLOBALS['_GEN_commun']['info_auth_bdd']->url_inscription)) {
$retour .= '<p><a id="lien_inscription" href="'.$GLOBALS['_GEN_commun']['info_auth_bdd']->url_inscription.'">'.
IDEN_LG_INSCRIPTION_URL.
'</a></p>'."\n";
}
$retour .= str_repeat(' ', 16).'</fieldset>'."\n";
$retour .= str_repeat(' ', 16).'</form>';
} else {
204,6 → 204,9
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.14 2005/05/19 14:00:58 jpm
* Déplacement du menu de modif de l'inscription.
*
* Revision 1.13 2005/04/14 16:37:22 jpm
* Ajout de la gestion de la modification de son inscription.
*