1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
from django import forms
from django.db import models
from django.contrib.auth.models import User
from django.contrib.auth import login, logout, authenticate
from django.core.validators import validate_email
from django.contrib.auth.forms import UserCreationForm
from website.models import Proposal
class ProposalForm(forms.ModelForm):
content_link = forms.CharField(required=False, help_text='Link to the content of your Talk')
speaker_link = forms.CharField(required=False, help_text='Link to information about the Speaker')
attachment = forms.FileField(required=False)
class Meta:
model = Proposal
exclude = ('user', )
def clean_attachment(self):
cleaned_data = self.cleaned_data
attachment = cleaned_data.get('attachment', None)
if attachment:
if not attachment.name.endswith('.pdf'):
raise forms.ValidationError('Only [.pdf] files are allowed')
elif attachment.size > (5*1024*1024):
raise forms.ValidationError('File size exceeds 5MB')
return attachment
class UserRegisterForm(UserCreationForm):
class Meta:
model = User
fields = ('first_name', 'last_name', 'email', 'username', 'password1',
'password2')
class UserLoginForm(forms.Form):
username = forms.CharField(
widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Username'}),
label=''
)
password = forms.CharField(
widget=forms.PasswordInput(attrs={'class': 'form-control', 'placeholder': 'Password'}),
label=''
)
|