Mercurial > kraina_muminkow
comparison frontend/mfrontend/templates/layout.html @ 22:9916d46ff096
Wrzucony layout - zostały jakieś drobne poprawki + zmiana źródeł (nie można np utworzyć foldery /pic/ i z niego ściągać obrazków)
author | mild@mild-laptop |
---|---|
date | Mon, 09 May 2011 01:50:00 +0200 |
parents | 58a993029d9f |
children | f73176cba39b |
comparison
equal
deleted
inserted
replaced
21:9a45dfaec157 | 22:9916d46ff096 |
---|---|
1 <!doctype html> | 1 <html> |
2 <head> | |
2 <title>NASZA APLIKACJA!</title> | 3 <title>NASZA APLIKACJA!</title> |
3 <div class=page> | 4 <script type="text/javascript" src="http://mild.net.pl/aiir/jquery.js"></script> |
4 <h1>NO HEJ</h1> | 5 <script type="text/javascript" src="http://mild.net.pl/aiir/fancybox/jquery.fancybox-1.3.4.pack.js"></script> |
5 <div class=metanav> | 6 <link rel="stylesheet" href="http://mild.net.pl/aiir/fancybox/jquery.fancybox-1.3.4.css" type="text/css" media="screen" /> |
7 <link rel="stylesheet" type="text/css" href="http://mild.net.pl/aiir/style.css"> | |
8 </head><body> | |
9 <div id="content"> | |
10 <div style="display:none"> | |
11 <div id="add"> | |
12 {% if error %}<p class=error><strong>Błąd:</strong> {{ error }}{% endif %} | |
13 <form action="/jobs/add/" method=post> | |
14 <dl> | |
15 <dt>Opis zadania: | |
16 <dd><input type=text name=label> | |
17 <dt>Hash: | |
18 <dd><input type=text name=hash> | |
19 <dt>Metoda łamania hasha: | |
20 <dd><input type=radio name=method value=0>Metoda 0 | |
21 <dd><input type=radio name=method value=1>Metoda 1 | |
22 <dd><input type=submit value=Dodaj> | |
23 </dl> | |
24 </form> | |
25 </div> | |
26 </div> | |
27 <div style="display:none"> | |
28 <div id="login"> | |
29 <form action="{{ url_for('frontend.login') }}" method=post> | |
30 <dl> | |
31 <dt>Nazwa użytkownika: | |
32 <dd><input type=text name=username> | |
33 <dt>Hasło: | |
34 <dd><input type=password name=password> | |
35 <dd><input type=submit value=Login> | |
36 </dl> | |
37 </form> | |
38 </div> | |
39 </div> | |
40 <div style="display:none"> | |
41 <div id="register"> | |
42 <form action="{{ url_for('frontend.register') }}" method=post> | |
43 <dl> | |
44 <dt>Nazwa użytkownika: | |
45 <dd><input type=text name=username> | |
46 <dt>Hasło: | |
47 <dd><input type=password name=password> | |
48 <dd><input type=submit value=Rejestruj> | |
49 </dl> | |
50 </form> | |
51 </div> | |
52 </div> | |
53 <h1>Krakersik</h1> | |
54 <div id="menu"> | |
6 {% if not session.logged_in %} | 55 {% if not session.logged_in %} |
7 <a href="{{ url_for('frontend.login') }}">Zaloguj się</a> | | 56 <div class="button"><a id="loginlink" href="#login">Zaloguj się</a></div> |
8 <a href="{{ url_for('frontend.register') }}">Załóż konto</a> | 57 <div class="button"><a id="registerlink" href="#register">Załóż konto</a></div> |
9 {% else %} | 58 {% else %} |
10 <a href="{{ url_for('frontend.index') }}">Strona główna</a> | | 59 <div class="button"><a href="{{ url_for('frontend.index') }}">Strona główna</a></div> |
11 <a href="{{ url_for('jobcontrol.index') }}">Lista zadań</a> | | 60 <div class="button"><a href="{{ url_for('jobcontrol.index') }}">Lista zadań</a></div> |
12 <a href="{{ url_for('jobcontrol.add') }}">Dodaj zadanie</a> | | 61 <div class="button"><a id="addlink" href="#add">Dodaj zadanie</a></div> |
13 <a href="{{ url_for('frontend.logout') }}">Wyloguj się</a> | 62 <div class="button"><a href="{{ url_for('frontend.logout') }}">Wyloguj się</a></div> |
14 {% endif %} | 63 {% endif %} |
15 </div> | 64 </div> |
16 {% for message in get_flashed_messages() %} | 65 {% for message in get_flashed_messages() %} |
17 <div class=flash>{{ message }}</div> | 66 <div class=flash>{{ message }}</div> |
18 {% endfor %} | 67 {% endfor %} |
19 {% block body %}{% endblock %} | 68 {% block body %} |
69 {% endblock %} | |
70 <script type="text/javascript" src="http://mild.net.pl/aiir/general.js"></script> | |
20 </div> | 71 </div> |
72 </body></head> |