Mercurial > dive4elements > river
comparison flys-client/src/main/webapp/login.jsp @ 2950:192eddbbd4cf
Implement a login page to be able to authenticate a user
The username and password requested by the login.jsp are send to
the LoginServlet. The credentials are afterwards used to authenticate
the user against GGinA.
flys-client/trunk@4928 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Bjoern Ricks <bjoern.ricks@intevation.de> |
---|---|
date | Wed, 11 Jul 2012 10:37:10 +0000 |
parents | |
children | 16c71457ed43 |
comparison
equal
deleted
inserted
replaced
2949:abf267708672 | 2950:192eddbbd4cf |
---|---|
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <title>FLYS - Login</title> | |
5 <link href="FLYS.css" type="text/css" rel="stylesheet"> | |
6 </head> | |
7 | |
8 <body> | |
9 <form method="POST" action="/flys/login" id="authentication"> | |
10 <h1>FLYS Anmeldung</h1> | |
11 <div>Bitte geben Sie eine Benutzerkennung und ein Passwort ein.</div> | |
12 <table> | |
13 <tr> | |
14 <td><label for="username">Benutzername: </label></td> | |
15 <td><input type="text" name="username" /></td> | |
16 </tr> | |
17 <tr> | |
18 <td><label for="password">Passwort: </label></td> | |
19 <td><input type="password" name="password" /></td> | |
20 </tr> | |
21 </table> | |
22 <input type="submit" class="sendButton" value="Anmelden"/> | |
23 </form> | |
24 </body> | |
25 </html> |