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
|
from django import forms
from django.db import models
from django.contrib.auth.models import User
from django.contrib.auth.forms import UserCreationForm, UserChangeForm
from website.models import Paper
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=''
)
class UserRegisterForm(UserCreationForm):
class Meta:
model = User
fields = ('first_name', 'last_name', 'email', 'username', 'password1', 'password2')
class UserProfileForm(UserChangeForm):
password = forms.CharField(widget=forms.PasswordInput())
password1 = forms.CharField(widget=forms.PasswordInput())
class Meta:
model = User
fields = ('first_name', 'last_name', 'email', 'username')
class DocumentUploadForm(forms.ModelForm):
class Meta:
model = Paper
exclude = ('user', 'verified')
widgets = {
'title':forms.TextInput(attrs={'placeholder':'Title of your Talk'}),
'objective':forms.TextInput(attrs={'placeholder':'Objective of the talk'}),
'abstract':forms.Textarea(attrs={'placeholder':'Abstract in 400 to 700 words'}),
'bio':forms.Textarea(attrs={'placeholder':'Tell us something about yourself in a few words'}),
'links':forms.TextInput(attrs={'placeholder':'Link to the code (if any) or relevant links'}),
}
|