Project

General

Profile

1
<html> 
2
<head>
3
<title>EML Upload Login</title>
4
</head>
5

    
6
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
7
<br><center>
8
<h3>
9
<font color="#132B76" face=verdana size=2%>
10
<b>Eml Upload Interface </b>
11
</font>
12
</h3>
13

    
14
<form name="myform" 
15
      method="POST" 
16
      action="servlet/LoginServlet">
17

    
18
<table width=400 align=center cellspacing=1 cellpadding=1 
19
       border=0 bgcolor="#333366">
20
    <tr>
21
        <td>
22

    
23
            <table bgcolor="#ffffff" border="0" cellpadding="1" width='100%' >
24
                <tr > 
25
                    <td colspan=3 align=center >&nbsp;</td>
26
                </tr>
27
                <tr > 
28
                    <td colspan=3 align=center >
29
                        <font face=verdana size=1%>
30
                            <b>Please  Enter Username and Password. </b>
31
                        </font>
32
                    </td> 
33
                </tr>
34
                <tr>
35
                    <td width='10%'> &nbsp;</td>
36
                    <td width="25%" bgcolor="#4682b4">
37
                        <p align="center">
38
                        <font color="white" face=verdana size=2%>
39
                            <b>Username</b>
40
                        </font>
41
                    </td>
42
                    <td><p><input type="text" 
43
                                  name="user" 
44
                                  maxlength="60" 
45
                                  size="28">
46
                    </td>
47
                </tr>
48
                <tr>
49
                    <td width='10%'> &nbsp;</td>
50
                    <td bgcolor="#4682b4"><p align="center">
51
                        <font color="white" face=verdana size=2%>
52
                            <b>Password</b>
53
                        </font>
54
                    </td>
55
                    <td><p><input type="password" 
56
                                  name="passwd" 
57
                                  maxlength="60" 
58
                                  size="28">
59
                    </td>
60
                </tr>
61
                <!--<tr>
62
                    <td width='10%'> &nbsp;</td>
63
                    <td bgcolor="#4682b4"><p align="center">
64
                        <font color="white" face=verdana size=2%>
65
                            <b>Group Name</b>
66
                        </font>
67
                    </td>
68
                    <td><p><input type="text" 
69
                                  name="group" 
70
                                  maxlength="60" 
71
                                  size="28">
72
                    </td>
73
                </tr>-->
74
                <tr>
75
                    <td colspan=3 align=center >&nbsp; </td> 
76
                </tr>
77
                <tr>
78
            </table>
79
        </td>
80
    </tr>
81
</table>
82
<br>
83
<p>
84
<input type="submit" value="Login">
85
<input type="reset" value="Reset">
86
</form>
87
</body>
(4-4/22)