root/releases/elgg0.8rc2/content/users/content_log_on_pane.php

Revision 659, 1.0 kB (checked in by misja, 2 years ago)

Taking gettext to a new level, see message <http://lists.elgg.org/pipermail/development/2006-October/000590.html>. In a nutshell: all gettext calls are replaced by gettext, revamped gettext handling plus some additional fixes.

  • Property svn:eol-style set to native
Line 
1 <form action="" method="post">
2
3     <table width="350" class="actionbox">
4    
5         <caption align="top">
6             __gettext("Log On");
7         </caption>
8         <tr>
9             <td>
10                 <label for="username">__gettext("Username")</label>
11             </td>
12             <td>
13                 <input type="text" name="username" id="username" />
14             </td>
15         </tr>
16         <tr>
17             <td>
18                 <label for="password">__gettext("Password")</label>
19             </td>
20             <td>
21                 <input type="password" name="password" id="password" />
22             </td>
23         </tr>
24         <tr>
25             <td>&nbsp;</td>
26             <td>
27                 <label><input type="checkbox" name="remember" checked="checked" /> __gettext("Remember Login")</label>
28             </td>
29         </tr>
30         <tr>
31             <td colspan="2" align="right">
32                 <label>Log on: <input type="submit" name="submit" value="__gettext("Go") /></label>
33             </td>
34         </tr>
35    
36     </table>
37
38 </form>
39
Note: See TracBrowser for help on using the browser.