7 lines
373 B
Python
7 lines
373 B
Python
from django import forms
|
|
|
|
|
|
class GroupsForm(forms.Form):
|
|
username = forms.CharField(label="用户名", max_length=128, widget=forms.TextInput(attrs={'class': 'form-control', 'placeholder': "Username",'autofocus': ''}))
|
|
password = forms.CharField(label="密码", max_length=256, widget=forms.PasswordInput(attrs={'class': 'form-control','placeholder': "Password"}))
|