質問編集履歴

1

追記

2020/05/09 09:42

投稿

yuudai
yuudai

スコア65

test CHANGED
File without changes
test CHANGED
@@ -58,11 +58,29 @@
58
58
 
59
59
  ### 試したこと
60
60
 
61
+ 追記、このようにしてみましたがkeyerrorがself.fields['emailの所に出ました。
62
+
63
+ ```ここに言語を入力
64
+
65
+ class SignupForm(UserCreationForm):
61
66
 
62
67
 
63
- ここに問題に対して試したことを記載してください。
64
68
 
69
+ def __init__(self, *args, **kwargs):
65
70
 
71
+ super().__init__(*args, **kwargs)
72
+
73
+ self.fields['username'].widget.attrs.update({'placeholder':('Username')})
74
+
75
+ self.fields['email'].widget.attrs.update({'placeholder':('Email')})
76
+
77
+ self.fields['password1'].widget.attrs.update({'placeholder':('Password')})
78
+
79
+ self.fields['password2'].widget.attrs.update({'placeholder':('Repeat password')})
80
+
81
+
82
+
83
+ ```
66
84
 
67
85
  ### 補足情報(FW/ツールのバージョンなど)
68
86