Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<html>
<head>
    <title>Login</title>
    <script><!--
    function ourInitPage()
    {
        var f = document.getElementById( "loginPanelForm" );
        if ( f )
        {
            if ( f.LoginName.value == null || f.LoginName.value == "" )
            {
                f.LoginName.focus();
            }
            else
            {
                f.Passwd.focus();
            }
        }
        else
        {
            alert( "Form Not Found" );
        }
    }

    function sendForm( pInput )
    {
        pInput.value = "Processing...";
        pInput.disabled = "disabled";
        document.getElementById( "loginPanelForm" ).submit();
    }
    --></script>
    %.CSSfileRef.%
</head>
<body class='%.CSSclass.%' onLoad="ourInitPage();" style="%.BodyStyle.% background-color: gray;">
<table width="100%" height="100%" border="0" cellpadding="2" cellspacing="0">
    <tr>
        <td valign="middle">
            <table border="0" cellpadding="1" cellspacing="0" width="100%">
                <tr>
                    <td align="center">
                        <form id="loginPanelForm" method="post" action="%.SubmitAction.%">
                            <table border="0" cellpadding="1" cellspacing="0">
                                <tr>
                                    <td>Login Name:</td>
                                </tr>
                                <tr>
                                    <td>
                                        <input type="text" name="%.LoginName.%" id="LoginName" value=""/>
                                    </td>
                                </tr>
                                <tr>
                                    <td>Password:</td>
                                </tr>
                                <tr>
                                    <td>
                                        <input type="password" name="%.Password.%" id="Passwd"/>
                                    </td>
                                </tr>
                                <tr>
                                    <td align="center">
                                        <input type="submit" name="btn:SignIn" value="Sign in" onClick="sendForm(this)"/>
                                    </td>
                                </tr>
                            </table>
                        </form>
                    </td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                </tr>
                <tr>
                    <td align="center">%.Message.%</td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                </tr>
                <tr>
                    <td>&nbsp;</td>
                </tr>
                <tr>
                    <td align="center">%.Version.%</td>
                </tr>
            </table>
        </td>
    </tr>
</table>
<div style="display:none" id='Version'>%.Version.%</div>
<script type="text/javascript" src="%.InitScript.%"></script>
</body>
</html>

Commits for litesoft/trunk/Java/GWT/OldClient/src/org/litesoft/GWT/eventbus/public/portalsupport/templates/Login.template.html

Diff revisions: vs.
Revision Author Commited Message
948 Diff Diff GeorgeS picture GeorgeS Sat 07 Jun, 2014 23:42:39 +0000

Jusefuls Formatter Updated to New Code Format

2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000