Mercurial > dive4elements > river
comparison gwt-client/src/main/webapp/login.jsp @ 5838:5aa05a7a34b7
Rename modules to more fitting names.
author | Sascha L. Teichmann <teichmann@intevation.de> |
---|---|
date | Thu, 25 Apr 2013 15:23:37 +0200 |
parents | flys-client/src/main/webapp/login.jsp@a4c9296f6efa |
children |
comparison
equal
deleted
inserted
replaced
5837:d9901a08d0a6 | 5838:5aa05a7a34b7 |
---|---|
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="<%= request.getContextPath() + "/flys/login" %>" id="authentication"> | |
10 <h1>FLYS Anmeldung</h1> | |
11 <% String error = request.getParameter("error"); %> | |
12 <% if (error != null) { %> | |
13 <div class="error"> | |
14 <h2>Authentifizierung fehlgeschlagen</h2> | |
15 <div class="details"> | |
16 <%= error %> | |
17 </div> | |
18 </div> | |
19 <% } %> | |
20 <div>Bitte geben Sie eine Benutzerkennung und ein Passwort ein.</div> | |
21 <table> | |
22 <tr> | |
23 <td><label for="username">Benutzername: </label></td> | |
24 <td><input type="text" name="username" /></td> | |
25 </tr> | |
26 <tr> | |
27 <td><label for="password">Passwort: </label></td> | |
28 <td><input type="password" name="password" /></td> | |
29 </tr> | |
30 </table> | |
31 <input type="submit" class="sendButton" value="Anmelden"/> | |
32 </form> | |
33 </body> | |
34 </html> |