source: trunk/template/default/identification.tpl @ 541

Last change on this file since 541 was 541, checked in by z0rglub, 20 years ago
  • deletion of session_time and session_id_size as config parameter
  • new feature : "remember me" creates a long time cookie
  • possibility to set the default authentication method to URI or cookie
  • really technical parameters (session identifier size, session duration) are set in the config file and not in database + configuration.php
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1<div class="titrePage">{L_TITLE}</div>
2<div style="margin-top:15px;text-align:center;">
3<table width="60%" cellpadding="4" cellspacing="1" border="0" align="center">
4<form action="{F_LOGIN_ACTION}" method="post">
5<!-- BEGIN errors -->
6  <tr>
7        <td colspan="2">
8          <div class="errors">
9                <ul>
10                  <!-- BEGIN error -->
11                  <li>{errors.error.ERROR}</li>
12                  <!-- END error -->
13                </ul>
14          </div>
15        </td>
16  </tr>
17  <!-- END errors -->
18  <tr>
19        <td colspan="2" align="center">&nbsp;</td>
20  </tr>
21  <tr>
22        <td width="45%" align="right"><span class="gentbl">{L_USERNAME}:</span></td>
23        <td>
24          <input class="login" type="text" name="username" size="25" maxlength="40" value="{USERNAME}" />
25        </td>
26  </tr>
27  <tr>
28        <td align="right"><span class="gentbl">{L_PASSWORD}:</span></td>
29        <td>
30          <input class="login" type="password" name="password" size="25" maxlength="25" />
31        </td>
32  </tr>
33  <tr>
34        <td align="right"><span class="gentbl">{L_REMEMBER_ME}:</span></td>
35        <td>
36          <input type="checkbox" name="remember_me" value="1" />
37        </td>
38  </tr>
39  <tr align="center">
40        <td colspan="2"><input type="submit" name="login" value="{L_LOGIN}" class="bouton" /></td>
41  </tr>
42</form>
43</table>
44
45<table style="width:80%;margin-left:auto;margin-right:auto;">
46<tr>
47  <td colspan="3" align="center">
48        <!-- BEGIN free_access -->
49          <p><a href="./category.php">[ {L_GUEST} ]</a></p>
50          <a href="register.php"><img src="./template/{T_STYLE}/theme/register.gif" style="border:0;" alt=""/>&nbsp;{L_REGISTER}</a>&nbsp;&nbsp;-&nbsp;&nbsp;
51        <!-- END free_access -->
52          <a href="mailto:{MAIL_ADMIN}?subject=[PhpWebGallery] {L_FORGET}"><img src="./template/{T_STYLE}/theme/lost.gif" style="border:0;" alt=""/>&nbsp;{L_FORGET}</a>
53  </td>
54</tr>
55</table>
56</div>
Note: See TracBrowser for help on using the repository browser.