1608 |
alexandre_ |
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>
|