1 | 2 | simandl | {% extends "@Phem/simple.twig" %} |
2 | | | {% block body %} |
3 | | | {{ parent() }} |
4 | | | |
5 | | | {# include '@Phem/Login/login.twig' #} |
6 | | | |
7 | | | <style> |
8 | | | body { |
9 | | | padding-top: 40px; |
10 | | | padding-bottom: 40px; |
11 | | | background-color: #eee; |
12 | | | } |
13 | | | |
14 | | | .form-signin { |
15 | | | max-width: 330px; |
16 | | | padding: 15px; |
17 | | | margin: 0 auto; |
18 | | | } |
19 | | | .form-signin .form-signin-heading, |
20 | | | .form-signin .checkbox { |
21 | | | margin-bottom: 10px; |
22 | | | } |
23 | | | .form-signin .checkbox { |
24 | | | font-weight: normal; |
25 | | | } |
26 | | | .form-signin .form-control { |
27 | | | position: relative; |
28 | | | height: auto; |
29 | | | -webkit-box-sizing: border-box; |
30 | | | -moz-box-sizing: border-box; |
31 | | | box-sizing: border-box; |
32 | | | padding: 10px; |
33 | | | font-size: 16px; |
34 | | | } |
35 | | | .form-signin .form-control:focus { |
36 | | | z-index: 2; |
37 | | | } |
38 | | | .form-signin input[type="email"] { |
39 | | | margin-bottom: -1px; |
40 | | | border-bottom-right-radius: 0; |
41 | | | border-bottom-left-radius: 0; |
42 | | | } |
43 | | | .form-signin input[type="password"] { |
44 | | | margin-bottom: 10px; |
45 | | | border-top-left-radius: 0; |
46 | | | border-top-right-radius: 0; |
47 | | | } |
48 | | | </style> |
49 | | | |
50 | | | |
51 | | | <div class="panel panel-default" id="phem-login-panel"> |
52 | | | <div class="panel-heading"> |
53 | | | |
54 | | | PĹihlĂĄĹĄenĂ |
55 | | | </div> |
56 | | | <div class="panel-body"> |
57 | | | |
58 | | | |
59 | | | <form action="{{ formAction }}" method="POST" class="form-signin" role="form"> |
60 | | | <img src="/Application/Resources/images/cahc/logoSrovnavac.png" style="width: 170px;padding-bottom: 10px;"/> |
61 | | | <input name="username" type="text" class="form-control" placeholder="UĹživatelskĂŠ jmĂŠno" required autofocus> |
62 | | | <input name="password" type="password" class="form-control" placeholder="Heslo" required> |
63 | | | <button class="btn btn-lg btn-default btn-block" type="submit">PĹihlĂĄsit</button> |
64 | | | </form> |
65 | | | |
66 | | | |
67 | | | </div> |
68 | | | </div> |
69 | | | |
70 | | | {% endblock %} |
71 | | | |