source: sandbox/jabberit_messenger/trophy/xsl/loginPage.xsl @ 2271

Revision 2271, 848 bytes checked in by alexandrecorreia, 14 years ago (diff)

Ticket #986 - Reimplementar interface mais leve para o IM, sem a necessidades de plugins adicionais.

  • Property svn:executable set to *
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3        <xsl:output method="html" omit-xml-declaration="yes"/>
4       
5        <xsl:template match="login_page">
6               
7                <div id="trophyimlogin">
8                       
9                        <form name="cred">
10                                <table border="0">
11                                        <tr>
12                                                <td align="right">JID:</td>
13                                                <td><input type="text" id="trophyimjid"/></td>
14                                        </tr>
15                                        <tr>
16                                                <td align="right">Password:</td>
17                                                <td><input type="password" id="trophyimpass"/></td>
18                                        </tr>
19                                        <tr>
20                                                <td colspan="2" align="center">
21                                                        <input type='checkbox' id='trophyimloglevel' alt="Logging" title="Logging"/>
22                                                        <input type="button" id="trophyimconnect" value="connect" onclick="TrophyIM.login()"/>
23                                                </td>
24                                        </tr>
25                                </table>
26                        </form>
27                       
28                </div>
29                 
30        </xsl:template>
31       
32</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.