ulrich
2020-05-19 a52c39a698c68fa04789629a79c45ad1f882e627
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalabe=no">
    <meta name="description" content="">
    <meta name="author" content="">
    <link rel="stylesheet" type="text/css" href="<%= request.getContextPath() %>/stile.css">    
    <title>Anmeldung Nutzerverwaltung</title>
  </head>
  <body>
    <div class="container">
      <form class="form-signin" role="form" method="POST" action="j_security_check" name="loginform">
        <h2 class="form-signin-heading">Anmeldung Nutzerverwaltung</h2>
        <input  name="j_username" type="text" class="form-control" placeholder="Benutzerkennung" required autofocus>
        <input name="j_password" type="password" class="form-control" placeholder="Kennwort" required>
        <button class="btn btn-lg btn-primary btn-block" type="submit">Senden</button>
        <p class="backlink"><a href="/">zurück zur Hauptseite</a></p>
      </form>
    </div>
  </body>
</html>