source: trunk/template/yoga/identification.tpl @ 866

Last change on this file since 866 was 866, checked in by plg, 19 years ago
  • new: automatic new password sent by mail when requested by user
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 KB
Line 
1<!-- $Id: identification.tpl 866 2005-09-18 00:29:49Z plg $ -->
2<div id="content">
3
4  <div class="titrePage">
5    <ul class="categoryActions">
6      <li><a href="{U_LOST_PASSWORD}" title="{lang:Forgot your password?}"><img src="template/yoga/theme/lost_password.png" alt="{lang:Forgot your password?}"></a></li>
7      <li><a href="{U_REGISTER}" title="{lang:Create a new account}"><img src="./template/yoga/theme/register.png" alt="{lang:register}"/></a></li>
8      <li><a href="{U_HOME}" title="{lang:Go through the gallery as a visitor}"><img src="./template/yoga/theme/home.png" alt="{lang:home}"/></a></li>
9    </ul>
10    <h2>{lang:Identification}</h2>
11  </div>
12
13  <!-- BEGIN errors -->
14  <div class="errors">
15    <ul>
16      <!-- BEGIN error -->
17      <li>{errors.error.ERROR}</li>
18      <!-- END error -->
19    </ul>
20  </div>
21  <!-- END errors -->
22
23<form action="{F_LOGIN_ACTION}" method="post" class="properties">
24  <fieldset>
25    <legend>{lang:Connection settings}</legend>
26
27    <ul>
28      <li>
29        <label for="username">{L_USERNAME}</label>
30        <input class="login" type="text" name="username" id="username" size="25" maxlength="40" value="{USERNAME}">
31      </li>
32 
33      <li>
34        <label for="password">{L_PASSWORD}</label>
35        <input class="login" type="password" name="password" id="password" size="25" maxlength="25">
36      </li>
37 
38      <!-- BEGIN remember_me -->
39      <li>
40        <label>{L_REMEMBER_ME}</label>
41        <input type="checkbox" name="remember_me" value="1">
42      </li>
43      <!-- END remember_me -->
44    </ul>
45  </fieldset>
46
47  <p><input type="submit" name="login" value="{L_LOGIN}"></p>
48</form>
49 
50  <p>
51    <a href="{U_REGISTER}"><img src="template/yoga/theme/register.png" alt=""> {L_REGISTER}</a>
52    <a href="{U_LOST_PASSWORD}"><img src="template/yoga/theme/lost_password.png" alt=""> {lang:Forgot your password?}</a>
53  </p>
54
55</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.