Dateiverwaltung für die WebBox
ulrich
2018-04-03 af99308ac8192fd47be8f6ec030f973a0bf23072
commit | author | age
b7475d 1 <!DOCTYPE html>
U 2 <html lang="en">
3   <head>
4     <meta charset="utf-8">
5     <meta http-equiv="X-UA-Compatible" content="IE=edge">
6     <meta name="viewport" content="width=device-width, initial-scale=1">
7     <meta name="description" content="">
8     <meta name="author" content="">
9     <!--<link rel="icon" href="../../favicon.ico">-->
10
11     <title>Anmeldung Dateiverwaltung</title>
12
13     <!-- Bootstrap core CSS -->
14     <link rel="stylesheet" href="/jslib/bootstrap/css/bootstrap.min.css">
15
16     <!-- Custom styles for this template -->
17     <!--<link href="signin.css" rel="stylesheet">-->
18     <style type="text/css">
19       body {
20         padding-top: 40px;
21         padding-bottom: 40px;
22         background-color: #eee;
23       }
24       
25       .form-signin {
26         max-width: 330px;
27         padding: 15px;
28         margin: 0 auto;
29       }
30       .form-signin .form-signin-heading,
31       .form-signin .checkbox {
32         margin-bottom: 10px;
33       }
34       .form-signin .checkbox {
35         font-weight: normal;
36       }
37       .form-signin .form-control {
38         position: relative;
39         height: auto;
40         -webkit-box-sizing: border-box;
41            -moz-box-sizing: border-box;
42                 box-sizing: border-box;
43         padding: 10px;
44         font-size: 16px;
45       }
46       .form-signin .form-control:focus {
47         z-index: 2;
48       }
49       .form-signin input[type="text"] {
50         margin-bottom: -1px;
51         border-bottom-right-radius: 0;
52         border-bottom-left-radius: 0;
53       }
54       .form-signin input[type="password"] {
55         margin-bottom: 10px;
56         border-top-left-radius: 0;
57         border-top-right-radius: 0;
58       }
ea1ae0 59       .backlink {
U 60         margin-top: 2em;
61       }
b7475d 62     </style>
U 63
64     <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
65     <!--[if lt IE 9]>
66       <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
67       <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
68     <![endif]-->
69   </head>
70
71   <body>
72
73     <div class="container">
74
75       <form class="form-signin" role="form" method="POST" action="j_security_check" name="loginform">
76         <h2 class="form-signin-heading">Anmeldung Dateiverwaltung</h2>
77         <input  name="j_username" type="text" class="form-control" placeholder="Benutzerkennung" required autofocus>
78         <input name="j_password" type="password" class="form-control" placeholder="Kennwort" required>
79         <!--
80         <label class="checkbox">
81           <input type="checkbox" value="remember-me"> Remember me
82         </label>
83         -->
84         <button class="btn btn-lg btn-primary btn-block" type="submit">Senden</button>
ea1ae0 85         <p class="backlink"><a href="/">zurück zur Hauptseite</a></p>
b7475d 86       </form>
ea1ae0 87       
U 88       
b7475d 89
U 90     </div> <!-- /container -->
91
92   </body>
93 </html>