Subversion Repositories Sigmater

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
6 Andrea 1
<%--
2
  ~ Licensed to the Apache Software Foundation (ASF) under one
3
  ~ or more contributor license agreements. See the NOTICE file
4
  ~ distributed with this work for additional information
5
  ~ regarding copyright ownership. The ASF licenses this file
6
  ~ to you under the Apache License, Version 2.0 (the
7
  ~ "License"); you may not use this file except in compliance
8
  ~ with the License. You may obtain a copy of the License at
9
  ~
10
  ~ http://www.apache.org/licenses/LICENSE-2.0
11
  ~
12
  ~ Unless required by applicable law or agreed to in writing,
13
  ~ software distributed under the License is distributed on an
14
  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
  ~ KIND, either express or implied. See the License for the
16
  ~ specific language governing permissions and limitations
17
  ~ under the License.
18
  --%>
19
 
20
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
21
<html>
22
  <head>
23
    <jsp:include page="include/httpbase.jsp"/>
24
    <title>Login to Axis2 :: Administration page</title>
25
    <link href="axis2-web/css/axis-style.css" rel="stylesheet" type="text/css">
26
  </head>
27
 
28
  <body onload="javascript:document.LoginForm.userName.focus();">
29
    <jsp:include page="include/header.inc"/>
30
    <jsp:include page="include/link-footer.jsp"/>
31
    <table class="FULL_BLANK">
32
      <tr>
33
        <td valign="top">
34
        	<h2>Welcome :</h2>
35
        	<p>Welcome to the Axis2 administration console. From inside the Axis2 administration console you can :</p>
36
	    	<ul style="list-style: none;" class="loginUL">
37
	       		<li>Check on the health of your Axis2 deployment.</li>
38
 	       		<li>Change any parameters at run time.</li>
39
 	       		<li>Upload new services into Axis2 [Service hot-deployment].</li>
40
 	   		</ul>
41
	        <font color="orange">Warning: Please note that configuration changes done through the administration console
42
    	    will be lost when the server is restarted.</font>
43
    	</td>
44
        <td valign="top" align="left">
45
          <form method="post" name="LoginForm" action="axis2-admin/login">
46
            <table class="LOG_IN_FORM">
47
              <tr>
48
                <td align="center" colspan="2" bgcolor="#b0b0b0" color="#FFFFFF"><font color="#FFFFFF">Login</font></td>
49
              </tr>
50
              <tr>
51
                 <td align="center" colspan="2">&nbsp;</td>
52
               </tr>
53
              <tr>
54
                <td align="right">Username:</td>
55
                <td><input align="left" type="text" name="userName" tabindex="1">
56
                </td>
57
              </tr>
58
              <tr>
59
                <td align="right">Password : </td>
60
                <td><input align="left" type="password" autocomplete="off" name="password" tabindex="2">
61
                </td>
62
              </tr>
63
              <tr>
64
                <td colspan="2">
65
                  <br>
66
                </td>
67
              </tr>
68
              <tr>
69
                <td align="center" colspan="2">
70
                  <input name="cancel" type="reset" value=" Clear "> &nbsp; &nbsp;
71
                  <input name="submit" type="submit" value=" Login ">
72
                </td>
73
              </tr>
74
              <tr>
75
                <td align="center" colspan="2">
76
                  <font color="red">&nbsp;<% if (request.getAttribute("errorMessage") != null) {%><%= request.getAttribute("errorMessage")%><% } %>&nbsp;</font>
77
                </td>
78
              </tr>
79
            </table>
80
          </form>
81
          <br/><br/><br/><br/><br/><br/>
82
        </td>
83
      </tr>
84
    </table>
85
    <p>Test</p>
86
    <jsp:include page="include/footer.inc"/>
87
  </body>
88
</html>
89
 
90