Mercurial > dive4elements > river
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gwt-client/src/main/webapp/login.jsp Thu Apr 25 15:23:37 2013 +0200 @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html> + <head> + <title>FLYS - Login</title> + <link href="FLYS.css" type="text/css" rel="stylesheet"> + </head> + + <body> + <form method="POST" action="<%= request.getContextPath() + "/flys/login" %>" id="authentication"> + <h1>FLYS Anmeldung</h1> + <% String error = request.getParameter("error"); %> + <% if (error != null) { %> + <div class="error"> + <h2>Authentifizierung fehlgeschlagen</h2> + <div class="details"> + <%= error %> + </div> + </div> + <% } %> + <div>Bitte geben Sie eine Benutzerkennung und ein Passwort ein.</div> + <table> + <tr> + <td><label for="username">Benutzername: </label></td> + <td><input type="text" name="username" /></td> + </tr> + <tr> + <td><label for="password">Passwort: </label></td> + <td><input type="password" name="password" /></td> + </tr> + </table> + <input type="submit" class="sendButton" value="Anmelden"/> + </form> + </body> +</html>