Subversion Repositories Applications.papyrus

Rev

Rev 1608 | Rev 1728 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1608 Rev 1649
Line 1... Line -...
1
<form id="form_connexion" class="form_identification" action="<?=$url;?>" method="post">
-
 
2
  <fieldset>
-
 
3
  <legend><?=IDEN_LG_FORM_LEGEND;?></legend>
-
 
4
  <label for="username"><?=IDEN_LG_FORM_LABEL_COURRIEL;?></label>
-
 
5
  <input type="text"  id="username" name="username" maxlength="80" tabindex="1" value="<?=IDEN_LG_FORM_VALUE_COURRIEL;?>" />
-
 
6
  <label for="password"><?=IDEN_LG_FORM_LABEL_MDP;?></label>
-
 
7
  <input type="password" id="password" name="password" maxlength="80" tabindex="2" value="<?=IDEN_LG_FORM_VALUE_MDP;?>" />
-
 
8
 
-
 
9
  <input type="submit" id="connexion" name="connexion" tabindex="4" value="<?=IDEN_LG_FORM_VALUE_SUBMIT;?>" />
-
 
10
  <?php if (IDEN_AUTH_SESSION_DUREE != 0) : ?>
-
 
11
  <input type="checkbox" id="persistant" name="persistant" tabindex="3" value="o" />
-
 
12
  <label id="persistant_label" for="persistant">Mémoriser mon compte</label>
-
 
13
  <?php endif ;?>
-
 
14
  <?php if ($url_page_inscription || $url_inscription_aide) : ?>
-
 
15
  <p id="inscription_info">
-
 
16
    <?php if ($url_page_inscription) : ?>
-
 
17
    <a id="lien_inscription" href="<?=$url_page_inscription;?>"><?=IDEN_LG_INSCRIPTION_URL;?></a>
-
 
18
    <?php endif ;?>
-
 
19
    <?php if ($url_inscription_aide) : ?>
-
 
20
	<a id="inscription_aide" href="<?=$url_inscription_aide;?>"><?=IDEN_LG_INSCRIPTION_AIDE;?></a></p>
-
 
21
    <?php endif; ?>
-
 
22
  </p>
-
 
23
  <?php endif; ?>    
-
 
24
  </fieldset>
-
 
25
</form>
-
 
26
1
<?php if ($loggue) : ?>
-
 
2
	<p id="identification_info">
-
 
3
		<span id="identification_message"><?=IDEN_LG_MESSAGE;?></span>
-
 
4
		<?php if ($url_page_inscription) : ?>
-
 
5
			<a href="<?=$url_page_inscription;?>" id="voir_inscription" title="Voir mon inscription">
-
 
6
				<?=$chp_personne_prenom; ?>&nbsp;<?=$chp_personne_nom; ?>&nbsp;<?=$chp_structure; ?>
-
 
7
			</a>
-
 
8
		<?php else : ?>
-
 
9
			<?=$chp_personne_prenom; ?>&nbsp;<?=$chp_personne_nom; ?>&nbsp;<?=$chp_structure; ?>
-
 
10
		<?php endif; ?>
-
 
11
    </p>
-
 
12
    <p id="iden_action">
-
 
13
        <?php if ($url_page_modif_inscription) : ?>
-
 
14
            <a id="lien_inscription_modif" href="<?=$url_page_modif_inscription; ?>">
-
 
15
            	<?=IDEN_LG_INSCRIPTION_URL_MODIF;?>
-
 
16
            </a>
-
 
17
        <?php endif; ?>
-
 
18
        <a id="deconnexion" href="<?=$url_deconnect;?>"><?=IDEN_LG_DECONNEXION;?></a>
-
 
19
    </p>
-
 
20
<?php else : ?>
-
 
21
	<form id="form_connexion" class="form_identification" action="<?=$url;?>" method="post">
-
 
22
	  <fieldset>
-
 
23
	  <legend><?=IDEN_LG_FORM_LEGEND;?></legend>
-
 
24
	  <label for="username"><?=IDEN_LG_FORM_LABEL_COURRIEL;?></label>
-
 
25
	  <input type="text"  id="username" name="username" maxlength="80" tabindex="1" value="<?=IDEN_LG_FORM_VALUE_COURRIEL;?>" />
-
 
26
	  <label for="password"><?=IDEN_LG_FORM_LABEL_MDP;?></label>
-
 
27
	  <input type="password" id="password" name="password" maxlength="80" tabindex="2" value="<?=IDEN_LG_FORM_VALUE_MDP;?>" />
-
 
28
	
-
 
29
	  <input type="submit" id="connexion" name="connexion" tabindex="4" value="<?=IDEN_LG_FORM_VALUE_SUBMIT;?>" />
-
 
30
	  <?php if (IDEN_AUTH_SESSION_DUREE != 0) : ?>
-
 
31
	  <input type="checkbox" id="persistant" name="persistant" tabindex="3" value="o" />
-
 
32
	  <label id="persistant_label" for="persistant">Mémoriser mon compte</label>
-
 
33
	  <?php endif ;?>
-
 
34
	  <?php if ($url_page_inscription || $url_inscription_aide) : ?>
-
 
35
	  <p id="inscription_info">
-
 
36
	    <?php if ($url_page_inscription) : ?>
-
 
37
	    <a id="lien_inscription" href="<?=$url_page_inscription;?>"><?=IDEN_LG_INSCRIPTION_URL;?></a>
-
 
38
	    <?php endif ;?>
-
 
39
	    <?php if ($url_inscription_aide) : ?>
-
 
40
		<a id="inscription_aide" href="<?=$url_inscription_aide;?>"><?=IDEN_LG_INSCRIPTION_AIDE;?></a></p>
-
 
41
	    <?php endif; ?>
-
 
42
	  </p>
-
 
43
	  <?php endif; ?>    
-
 
44
	  </fieldset>
-
 
45
	</form>
-
 
46
<?php endif; ?>
-
 
47
27
48