i heard you like css, so i put some css in your project
* login dialog * notifications * main nav
This commit is contained in:
parent
37c8beae9e
commit
b43c1df865
BIN
k4ever/k4ever.db
BIN
k4ever/k4ever.db
Binary file not shown.
|
@ -1,20 +1,23 @@
|
||||||
<!-- Please Intert Doctype. Or Don't. I don't care. -->
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/style.css" />
|
<link rel="stylesheet" media="screen" type="text/css"
|
||||||
<title>Cashboxes are forever...</title>
|
href="{{ MEDIA_URL }}css/style.css" />
|
||||||
|
<title>Freitagsrundenkasse</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="title">
|
<div id="header">
|
||||||
Its Alive - and here could be a logo. Wouldn't that be nice?
|
<div class="search">
|
||||||
{% if user.is_authenticated %}
|
<form method="post" action="/what/do/i/know">
|
||||||
Logged in as {{ user }}, balance {{ user.get_profile.balance }} EUR
|
<input type="search" name="search_term" />
|
||||||
{% endif %}
|
<input type="submit" value="Suchen" />
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div class="navigation">
|
<div class="base_nav">
|
||||||
<div class="left">
|
<h1>Kasse</h1>
|
||||||
{% if user.is_authenticated %}
|
{% if user.is_authenticated %}
|
||||||
{% include "main/navigation-login.html" %}
|
{% include "main/navigation-login.html" %}
|
||||||
|
<span class="balance">Kontostand: {{ user.get_profile.balance }} €</span>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% include "main/navigation.html" %}
|
{% include "main/navigation.html" %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
<b>Main</b><br />
|
<ul>
|
||||||
<a href="/">Startseite (Main)</a><br />
|
<li><a href="/">Home</a></li>
|
||||||
<a href="/store/">Buy</a><br />
|
<li><a href="/store/">Einkaufen</a></li>
|
||||||
<a href="/transaction/">Konto</a><br />
|
<li><a href="/transaction/">Konto</a></li>
|
||||||
<a href="/store/history/">History</a><br />
|
<li><a href="/store/history/">Frühere Einkäufe</a></li>
|
||||||
{% if user.is_staff %}
|
{% if user.is_staff %}<li><a href="/admin/">Administration</a></li>{% endif %}
|
||||||
<br /><b>Admin foo</b><br />
|
<li><a href="/user/logout/">Abmelden</a></li>
|
||||||
<a href="/admin/">Admin Interface</a><br /><br />{% endif %}
|
</ul>
|
||||||
<a href="/user/logout/">Logout</a><br /><br />
|
|
||||||
|
|
|
@ -1,2 +1,4 @@
|
||||||
<a href="/user/login/">Login</a><br /><br />
|
<ul>
|
||||||
<a href="/user/register/">Registrieren</a><br /><br />
|
<li><a href="/user/login/">Anmelden</a></li>
|
||||||
|
<li><a href="/user/register/">Registrieren</a></li>
|
||||||
|
</ul>
|
|
@ -1,29 +1,26 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block "content" %}
|
{% block "content" %}
|
||||||
|
|
||||||
{% if form.errors %}
|
{% if form.errors %}
|
||||||
<!-- Thaddaeus - du bist einfach mal der krasseste Troll, den ich ueberhaupt kenne!! *grml* -->
|
<div class="error">
|
||||||
<!-- <marquee behavior="ALTERNATE"><p>Your username and password didn't match. Please try again.</p></marquee> -->
|
<h2>Deine Logindaten sind fehlerhaft</h2>
|
||||||
<p><b>Dein Benutzername oder Passwort oder beides ist falsch.</b> <br />
|
<p>Versuch es nochmal, aber achte auf CAPSLOCK und tippe nicht so schnell.</p>
|
||||||
Versuch es nochmal, aber achte auf CAPSLOCK und tippe nicht so schnell..</p>
|
<p>Falls du dein Passwort vergessen haben solltest (oder es nicht geht..),
|
||||||
<p><i> Falls du dein Passwort vergessen haben solltest (oder es nicht geht..), dann <br />
|
dann melde dich bei deiner <a href="http://www.antifa.de/cms/">Local Antifa</a>
|
||||||
melde dich bei einem Admin deiner Wahl. </i></p>
|
oder einem Admin <a href="http://superfluousandsparse.blogspot.com/">
|
||||||
|
unserer Wahl</a>.</p>
|
||||||
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<form method="post" action="/user/login/">
|
<form class="login" method="post" action="/user/login/">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<table>
|
<fieldset>
|
||||||
<tr>
|
<p>{{ form.username.label_tag }} {{ form.username }}</p>
|
||||||
<td>{{ form.username.label_tag }}</td>
|
<p>{{ form.password.label_tag }} {{ form.password }}</p>
|
||||||
<td>{{ form.username }}</td>
|
</fieldset>
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>{{ form.password.label_tag }}</td>
|
|
||||||
<td>{{ form.password }}</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
<input type="submit" value="login" />
|
<input type="submit" value="Anmelden" />
|
||||||
<input type="hidden" name="next" value="{{ next }}" />
|
<input type="hidden" name="next" value="{{ next }}" />
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 273 B |
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
|
@ -0,0 +1,214 @@
|
||||||
|
/* THOSE ARE JUST TEMPORARY, I CHANGE THEM LATER INTO LOCAL RESOURCES */
|
||||||
|
|
||||||
|
@import url(http://fonts.googleapis.com/css?family=Droid+Serif:regular,italic,bold,bolditalic&subset=latin);
|
||||||
|
@import url(http://fonts.googleapis.com/css?family=Droid+Sans:regular,bold&subset=latin);
|
||||||
|
|
||||||
|
/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
|
||||||
|
-------------------------------------------------------------- */
|
||||||
|
|
||||||
|
html, body, div, span, applet, object, iframe,
|
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
|
a, abbr, acronym, address, big, cite, code,
|
||||||
|
del, dfn, em, font, img, ins, kbd, q, s, samp,
|
||||||
|
small, strike, strong, sub, sup, tt, var,
|
||||||
|
b, u, i, center,
|
||||||
|
dl, dt, dd, ol, ul, li,
|
||||||
|
fieldset, form, label, legend,
|
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td {
|
||||||
|
background: transparent;
|
||||||
|
border: 0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
clear: both;
|
||||||
|
font-weight: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol, ul, li {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
quotes: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote:before, blockquote:after {
|
||||||
|
content: '';
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
del {
|
||||||
|
text-decoration: line-through;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* tables still need 'cellspacing="0"' in the markup */
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
a img {
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* GENERAL SETTINGS */
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: 'Droid Sans', arial, sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
font-family: 'Droid Serif', Garamond, serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
p { margin-bottom: 7px; }
|
||||||
|
|
||||||
|
input {
|
||||||
|
padding: 2px 5px;
|
||||||
|
border: 1px solid #E5E5E5;
|
||||||
|
background: none repeat scroll 0 0 #FBFBFB;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=text]:focus, input[type=search]:focus, input[type=password]:focus {
|
||||||
|
background: #FAFFBD;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* HEADER */
|
||||||
|
|
||||||
|
#header {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header > div {
|
||||||
|
padding: 5px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header .search {
|
||||||
|
background: url("img/logo.png") 10px center no-repeat #323232;
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header .search form {
|
||||||
|
float: right;
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header .base_nav {
|
||||||
|
background: url("img/base_nav_bg.gif") repeat-x #339DD1;
|
||||||
|
text-transform: uppercase;
|
||||||
|
height: 50px;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header .base_nav h1 {
|
||||||
|
color: white;
|
||||||
|
float: left;
|
||||||
|
margin-right: 20px;
|
||||||
|
line-height: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header .base_nav ul {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header .base_nav ul li {
|
||||||
|
display: inline-block;
|
||||||
|
text-transform: uppercase;
|
||||||
|
line-height: 36px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header .base_nav a {
|
||||||
|
display: block;
|
||||||
|
margin-top: 7px;
|
||||||
|
padding: 0 10px;
|
||||||
|
text-decoration: none;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#header .base_nav a:hover {
|
||||||
|
background: white;
|
||||||
|
color: #339DD1;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.balance {
|
||||||
|
float: right;
|
||||||
|
line-height: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* LOGIN FORM */
|
||||||
|
|
||||||
|
form.login {
|
||||||
|
width: 300px;
|
||||||
|
margin: 60px auto;
|
||||||
|
-moz-box-shadow: 3px 3px 6px #333;
|
||||||
|
-webkit-box-shadow: 3px 3px 6px #333;
|
||||||
|
box-shadow: 3px 3px 6px #333;
|
||||||
|
border: 1px solid #E5E5E5;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
form.login label {
|
||||||
|
display: block;
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-bottom: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
form.login input {
|
||||||
|
font-size: 24px;
|
||||||
|
width: 97%;
|
||||||
|
}
|
||||||
|
|
||||||
|
form.login input[type=submit] {
|
||||||
|
width: auto;
|
||||||
|
padding: 3px 20px;
|
||||||
|
margin-top: 15px;
|
||||||
|
background: #339DD1;
|
||||||
|
color: white;
|
||||||
|
font-size: 18px;
|
||||||
|
border: 1px solid #323232;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* NOTIFICATIONS */
|
||||||
|
|
||||||
|
.error, .notice, .success {
|
||||||
|
border-top: 1px solid #DDD;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
padding: 0.6em 0.8em;
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error h2, .notice h2, .success h2 {
|
||||||
|
font-size: 100%;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error {
|
||||||
|
background: #FBE3E4;
|
||||||
|
color: #8A1F11;
|
||||||
|
border-color: #FBC2C4;
|
||||||
|
}
|
||||||
|
.error a { color:#8A1F11; }
|
||||||
|
|
||||||
|
.notice {
|
||||||
|
background: #FFF6BF;
|
||||||
|
color: #514721;
|
||||||
|
border-color: #FFD324;
|
||||||
|
}
|
||||||
|
.notice a { color:#514721; }
|
||||||
|
|
||||||
|
.success{
|
||||||
|
background: #E6EFC2;
|
||||||
|
color: #264409;
|
||||||
|
border-color: #C6D880;
|
||||||
|
}
|
||||||
|
.success a { color:#264409; }
|
Loading…
Reference in New Issue