mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-07 12:53:16 +08:00
10 lines
321 B
Python
10 lines
321 B
Python
# @Time : 2018/10/17 23:13
|
|
# @Author : RobbieHan
|
|
# @File : forms.py
|
|
|
|
from django import forms
|
|
|
|
|
|
class LoginForm(forms.Form):
|
|
username = forms.CharField(required=True, error_messages={"requeired": "请填写用户名"})
|
|
password = forms.CharField(required=True, error_messages={"requeired": "请填写密码"}) |