]> wagnertech.de Git - SVBaL.git/blobdiff - python/eh_util/eh_util/forms.py
Fehlermeldung kommt jetzt gar nicht mehr, da sich 0 nicht als Wert in
[SVBaL.git] / python / eh_util / eh_util / forms.py
diff --git a/python/eh_util/eh_util/forms.py b/python/eh_util/eh_util/forms.py
new file mode 100644 (file)
index 0000000..f404bde
--- /dev/null
@@ -0,0 +1,7 @@
+from django import forms
+
+class LoginForm(forms.Form):
+    verein   = forms.CharField(label = "Vereinskürzel")
+    name     = forms.CharField(label = "Login-Name")
+    password = forms.CharField(widget=forms.PasswordInput, label = "Passwort")
+    next     = forms.CharField(widget = forms.HiddenInput(), required = False)