1
00:00:00,180 --> 00:00:00,970
Hello, friend.

2
00:00:00,990 --> 00:00:01,800
Welcome back.

3
00:00:02,100 --> 00:00:06,310
In a previous video, we successfully complete our logging portions, right?

4
00:00:06,600 --> 00:00:08,490
So now that is our sign up page.

5
00:00:08,490 --> 00:00:09,540
That is a logging page.

6
00:00:09,540 --> 00:00:11,920
And also you successfully complete the log out.

7
00:00:12,150 --> 00:00:18,600
So in this video, I want to do want to discuss about like if you already access the here we load all

8
00:00:18,650 --> 00:00:19,230
the form.

9
00:00:19,590 --> 00:00:25,440
We load on that with our user creation from right into the U.S. form is actually providing three of

10
00:00:25,440 --> 00:00:25,940
this field.

11
00:00:26,190 --> 00:00:31,510
One is that username and password and the password feel right there is a password too.

12
00:00:32,190 --> 00:00:35,310
So by default we get three of this field.

13
00:00:35,310 --> 00:00:41,760
But here, if you want to add another external feel like for this user registration, I want to do want

14
00:00:41,760 --> 00:00:43,700
to add another feel for the e-mail.

15
00:00:44,130 --> 00:00:49,530
So how can I add that another feel that means another custom feel in our design base.

16
00:00:50,010 --> 00:00:52,450
OK, so how can do that work in this video.

17
00:00:52,470 --> 00:00:54,660
I will show you that things with a live example.

18
00:00:55,230 --> 00:01:00,430
So it's pretty much easy things like here right now that is you.

19
00:01:00,460 --> 00:01:01,050
What else?

20
00:01:01,050 --> 00:01:03,480
There is a business right now just simply remove it.

21
00:01:03,690 --> 00:01:08,040
OK, so that is in our app logging and into the app logging area.

22
00:01:08,040 --> 00:01:13,440
If you want to create some of the custom form, then you have to do we have to create on the base.

23
00:01:13,800 --> 00:01:18,620
So just click on a new file and just name it as a forms forms dot fight.

24
00:01:19,290 --> 00:01:22,770
So that is are forms that fight and the forms that fire area.

25
00:01:22,770 --> 00:01:27,960
First of all, you have to do we have to load some of the glass like here, first of all, from Django

26
00:01:28,620 --> 00:01:33,270
form to the Django, I have to do I have to import our Django forms.

27
00:01:34,020 --> 00:01:36,750
So I just simply load our Django forms.

28
00:01:36,750 --> 00:01:45,390
And then also I want to do to load our this user that this is our creation form so better.

29
00:01:45,390 --> 00:01:46,890
I think you already remember it.

30
00:01:46,890 --> 00:01:48,960
I have already loaded before.

31
00:01:49,200 --> 00:01:52,200
So that is, you know, Django and then the country.

32
00:01:53,130 --> 00:01:53,700
Right.

33
00:01:53,700 --> 00:02:01,160
Country and the old and then the forms and from here you have to import our this usurpation from.

34
00:02:01,500 --> 00:02:08,370
So as I told you with this usurpation form already we get some of the specific feel that is our username

35
00:02:08,370 --> 00:02:09,870
password and the password too.

36
00:02:10,290 --> 00:02:13,950
And also I want to do I want to import our user class.

37
00:02:13,950 --> 00:02:20,010
So here, if you go to again, so far from the user class, they have the same on the field.

38
00:02:20,610 --> 00:02:24,470
So you're also providing that user class also provided that email rights.

39
00:02:24,470 --> 00:02:30,360
So I to do and actually access about this email in our this form area.

40
00:02:30,810 --> 00:02:31,950
So that is all user.

41
00:02:31,970 --> 00:02:33,720
So right now, first of all, we have to do that.

42
00:02:33,750 --> 00:02:34,790
Also lauded.

43
00:02:35,130 --> 00:02:36,630
That means we have to import it.

44
00:02:37,170 --> 00:02:41,910
That means from and that is in know Django and then the Cantrip.

45
00:02:42,720 --> 00:02:48,380
So that is all Django country and then art and then the models.

46
00:02:49,200 --> 00:02:52,350
So from the models and we import our user class.

47
00:02:52,560 --> 00:02:52,930
Right.

48
00:02:52,950 --> 00:02:55,290
So I have already discussed about that things with the friend.

49
00:02:55,290 --> 00:02:58,440
So that is our user class is actually providing five of these field.

50
00:02:58,980 --> 00:03:00,720
So that is our five of these field.

51
00:03:00,720 --> 00:03:06,870
If you go to our admin panel into the admin panel also, it's not showing us the username, password,

52
00:03:06,870 --> 00:03:09,040
first name, last name, email.

53
00:03:09,420 --> 00:03:14,190
That means that is our user on the database table by default on the Django table.

54
00:03:14,190 --> 00:03:17,490
And it does table that that have the five different fields.

55
00:03:17,490 --> 00:03:17,810
Right.

56
00:03:18,060 --> 00:03:18,360
So no.

57
00:03:18,390 --> 00:03:23,730
And we don't actually access our this email field and this email filename by default as email.

58
00:03:24,090 --> 00:03:29,210
So no one to do add another additional feel in our Disfarmer area.

59
00:03:29,610 --> 00:03:31,800
So for the reasons I simply import it.

60
00:03:32,130 --> 00:03:41,820
So no to do create the creation of the class, same name in that class as a sign of OK, name it as

61
00:03:41,820 --> 00:03:42,740
a sign of form.

62
00:03:42,750 --> 00:03:48,480
So this type of the form and here also we have to do we have to load first of all, all that our user

63
00:03:48,480 --> 00:03:55,920
from the user creation from I just simply load it, OK, and then I want to do I want to add our additional

64
00:03:55,920 --> 00:03:56,220
fields.

65
00:03:56,220 --> 00:03:59,610
So I want to add and the email additional fields.

66
00:03:59,610 --> 00:04:05,280
I just take one of the variable as email and if the email area that will be in our forms.

67
00:04:05,730 --> 00:04:09,720
So from the forms that means that is our Django forms into the Django form.

68
00:04:09,720 --> 00:04:15,210
Syria with this I want to do want to add that type or this type will be as the email field type.

69
00:04:16,560 --> 00:04:16,970
Right.

70
00:04:16,980 --> 00:04:19,080
That will be as email field.

71
00:04:19,090 --> 00:04:25,070
So that another one of the type as email fields I just added it will be as email field type and also

72
00:04:25,110 --> 00:04:26,400
make that as a liquid.

73
00:04:26,970 --> 00:04:30,540
So record record will be added.

74
00:04:30,540 --> 00:04:30,920
True.

75
00:04:31,860 --> 00:04:33,060
So make it as a true.

76
00:04:33,060 --> 00:04:34,690
That means this field will be as a.

77
00:04:35,280 --> 00:04:40,890
OK, and also I want to do want to create another class that means inside this class I want to create

78
00:04:40,890 --> 00:04:42,680
another class which will be as a matter.

79
00:04:42,780 --> 00:04:47,220
So I name it as a class and it will be as a middle class.

80
00:04:47,220 --> 00:04:48,870
OK, into the middle class area.

81
00:04:48,870 --> 00:04:51,450
I want to do want to add our model.

82
00:04:51,450 --> 00:04:57,210
That means, first of all, that is that is the user I want to use.

83
00:04:57,210 --> 00:04:57,510
Right.

84
00:04:57,510 --> 00:04:59,670
So that they will use a class on the use of the.

85
00:05:00,010 --> 00:05:06,910
Here, I just name it the model store model and the model area, I load over this user class, that

86
00:05:06,910 --> 00:05:09,450
means this user class goes from to this user class.

87
00:05:09,460 --> 00:05:11,650
I want to get our this email right.

88
00:05:12,160 --> 00:05:17,990
So here I just simply added our user and then I have to do I have to add that our fields.

89
00:05:18,010 --> 00:05:23,330
So what are the field you want to display when you have to add that a field in particular, that area.

90
00:05:23,350 --> 00:05:24,790
So I name it as a field.

91
00:05:25,660 --> 00:05:33,550
Fields and fields will be like as a first of all, it will be as a user name, user name, so that all

92
00:05:33,550 --> 00:05:40,540
that actually field counts from our user creation and that if you go so for the user from here, I want

93
00:05:40,540 --> 00:05:50,360
to take out this email field and also for the user creation that is our user where it is.

94
00:05:51,310 --> 00:05:52,840
So that is our user creation.

95
00:05:52,840 --> 00:05:58,110
And if the U.S. here there is a field name as a user name as a password, one password, too.

96
00:05:58,480 --> 00:06:01,420
So no one to actually add all that filter is a field.

97
00:06:01,420 --> 00:06:06,990
And then I don't want to add another one and another one will still be as email.

98
00:06:07,630 --> 00:06:08,930
There is a default one.

99
00:06:08,950 --> 00:06:13,150
So here I want to use it and also take another one as a password.

100
00:06:13,690 --> 00:06:15,940
And that means a password one.

101
00:06:16,030 --> 00:06:16,450
Right.

102
00:06:16,990 --> 00:06:19,240
You can see this file name as a password one.

103
00:06:19,240 --> 00:06:21,260
And also another one is a password too.

104
00:06:21,310 --> 00:06:29,050
So now I want to do and also added it will be as a SIM, which will be as a password to perfect.

105
00:06:29,080 --> 00:06:32,230
So now here we have to do we have to update our this form.

106
00:06:32,230 --> 00:06:36,010
That means here I loaded out this phone for loaded this here.

107
00:06:36,010 --> 00:06:38,410
I have already created one of the function.

108
00:06:38,410 --> 00:06:38,710
Right.

109
00:06:39,050 --> 00:06:44,280
Since The View, since the video I have created one of the function for the sign up so that they all

110
00:06:44,290 --> 00:06:49,600
sign up to the sign up period before I have used directly our user creation from.

111
00:06:49,630 --> 00:06:53,140
So with this user from we get that of this field.

112
00:06:53,200 --> 00:06:55,840
That is our username password and the password.

113
00:06:55,850 --> 00:06:56,110
Right.

114
00:06:56,440 --> 00:06:57,970
So right now I customize it.

115
00:06:58,210 --> 00:06:59,890
I customize it in our form.

116
00:06:59,930 --> 00:07:04,130
So here I customize it with our this class that is our sign up class.

117
00:07:04,130 --> 00:07:06,040
So now we have to do we have to use it.

118
00:07:06,070 --> 00:07:07,750
OK, that means this class idea.

119
00:07:07,960 --> 00:07:13,220
I have added user name, email or another password one and the password too.

120
00:07:13,570 --> 00:07:17,770
So now I have to do I have to update it so that it will be our sign up form.

121
00:07:17,770 --> 00:07:19,290
So into the particular data.

122
00:07:19,360 --> 00:07:24,730
So I just simply updated equipment and I just take the things with this variable and here I just simply

123
00:07:24,730 --> 00:07:28,540
pass it in our dictionary area so it'll be just like the same.

124
00:07:28,780 --> 00:07:32,080
And also here there is a form that is automatically.

125
00:07:32,160 --> 00:07:36,120
So here also we have to update as a sign up from that is our custom class.

126
00:07:36,430 --> 00:07:38,970
So I just simply updated on here.

127
00:07:39,370 --> 00:07:41,130
I hope it's very clear to you.

128
00:07:41,140 --> 00:07:44,970
So if you want to use it, first of all, also you have to load our this form, right.

129
00:07:45,670 --> 00:07:47,650
So that means here we have to import it.

130
00:07:47,980 --> 00:07:52,090
So that is from that is from our which place?

131
00:07:52,090 --> 00:07:53,710
That is from our app logging.

132
00:07:53,710 --> 00:07:54,730
And that is our form.

133
00:07:54,800 --> 00:07:55,130
Right.

134
00:07:55,450 --> 00:08:02,410
So from here we have to do I have to add it as an app logging, app logging and from to the app logging

135
00:08:02,410 --> 00:08:06,540
that have created one of the firebase and that is one of the pages of forms.

136
00:08:07,120 --> 00:08:14,560
So from the forms and the import and import from our app, logging from soundin, put out this class

137
00:08:14,740 --> 00:08:20,740
that is all sign up class or no, I will simply add or sign up class so that the sign up class is visible

138
00:08:20,740 --> 00:08:23,410
in our form and also in the form area.

139
00:08:23,410 --> 00:08:25,630
And then the rest of this will be just like that.

140
00:08:26,500 --> 00:08:31,390
So now if you click Azabal and now if you refresh it.

141
00:08:32,640 --> 00:08:39,120
So now here there is another Felicidad as the email address that a user name, email address, password

142
00:08:39,120 --> 00:08:43,770
and the password and also that is actually view another one.

143
00:08:44,100 --> 00:08:46,100
That means this that is a clever is.

144
00:08:46,670 --> 00:08:52,470
So I make that as required in our that is our form into the form maybe.

145
00:08:53,170 --> 00:08:59,590
And you can see I name it as the email, which will be as email actually I make that as a capital.

146
00:09:00,150 --> 00:09:08,270
So now if you click as save all and now if you refresh it, you can see it's now perfectly gone.

147
00:09:08,580 --> 00:09:09,960
So that is our email field.

148
00:09:09,960 --> 00:09:12,150
And you can see this email file is the request.

149
00:09:12,240 --> 00:09:12,600
Right.

150
00:09:12,610 --> 00:09:15,000
So I make that email file as a request.

151
00:09:15,030 --> 00:09:20,820
And also here, if you want to put some of the level you can at that level, I show you like you have

152
00:09:20,820 --> 00:09:21,030
to do.

153
00:09:21,030 --> 00:09:23,940
We have to add as a level level.

154
00:09:23,940 --> 00:09:31,370
And I just to make that level, I make it as a email address, email address.

155
00:09:32,190 --> 00:09:34,060
Say just name it as an email address.

156
00:09:34,080 --> 00:09:39,810
OK, now if you click on this table and now if you refresh it again.

157
00:09:40,110 --> 00:09:40,500
Yes.

158
00:09:40,500 --> 00:09:43,700
You can see the level is updated as the email address.

159
00:09:43,710 --> 00:09:44,150
Perfect.

160
00:09:44,490 --> 00:09:49,770
So now that is our user name, email address, password and the password.

161
00:09:50,130 --> 00:09:57,020
So friend, I hope you can will understand about each of these username and password and password actually

162
00:09:57,030 --> 00:10:01,440
counts for which place that is comes from our user creation from right.

163
00:10:01,650 --> 00:10:03,720
And also from our user here.

164
00:10:03,720 --> 00:10:04,290
From here.

165
00:10:04,290 --> 00:10:07,490
I want to go on to get our specific one of the field ideas.

166
00:10:07,710 --> 00:10:09,120
So that will be our email.

167
00:10:09,120 --> 00:10:11,100
So four divisions in our field area.

168
00:10:11,100 --> 00:10:12,720
I want to access our email field.

169
00:10:13,110 --> 00:10:19,080
That means in our mind that if we go to our admin, if that means for the user to have of the field

170
00:10:19,080 --> 00:10:20,230
as an email address.

171
00:10:20,230 --> 00:10:22,130
So this name as email.

172
00:10:22,410 --> 00:10:25,820
So now I want to actually use it with our this user class.

173
00:10:25,830 --> 00:10:26,120
Right.

174
00:10:26,490 --> 00:10:29,130
So for the reasons you can see is automatically updated.

175
00:10:29,130 --> 00:10:32,590
And in our view area, I just simply updated our form.

176
00:10:32,610 --> 00:10:38,730
So right now there is our custom format created as a sign up and I just simply updated it on here.

177
00:10:38,730 --> 00:10:45,660
And now we can see everything is updated so that the user name, email address, password and the confirm

178
00:10:45,660 --> 00:10:46,210
password.

179
00:10:46,290 --> 00:10:52,130
So now I want to do I want to create one of the page for the profile like DePrince, this user profile

180
00:10:52,140 --> 00:10:57,660
that means in our template since the template in our app logging here, I want to create all the new

181
00:10:57,660 --> 00:11:02,220
file and I just name it as a profile, not as HTML.

182
00:11:02,520 --> 00:11:09,420
OK, so that will be our profile of this general and it will be just like the same here letter I just

183
00:11:09,420 --> 00:11:10,060
copied.

184
00:11:10,140 --> 00:11:17,340
OK, but I just copy all things from here and I posted in our profile it will be extended our pages,

185
00:11:17,340 --> 00:11:19,740
html and here we don't need any form.

186
00:11:20,340 --> 00:11:21,320
I remove it.

187
00:11:21,330 --> 00:11:22,750
So that will be our title.

188
00:11:22,750 --> 00:11:30,060
This will be as a profile page, should be as a profile page and then our blog body here.

189
00:11:30,060 --> 00:11:37,890
We don't need any form and I want to do the visible some of the name as your profile, OK, which will

190
00:11:37,890 --> 00:11:39,800
be so as your profile.

191
00:11:40,110 --> 00:11:45,720
And also here, if you want to display all that to your name, that means the email address I put on

192
00:11:45,800 --> 00:11:50,730
the PAETEC as a user name, user name if you want to visible.

193
00:11:50,970 --> 00:11:53,050
That will be with our user model.

194
00:11:53,400 --> 00:11:56,610
So here I want to actually use our users.

195
00:11:56,610 --> 00:11:57,700
I have already use it.

196
00:11:57,720 --> 00:12:03,840
So with this user, that is all that our field, you can see that username, feel the password, email,

197
00:12:03,840 --> 00:12:05,220
fast name and the last names.

198
00:12:05,220 --> 00:12:08,480
You've got the visibility and visibility with the user.

199
00:12:09,420 --> 00:12:12,660
So with the user you can visible that user name.

200
00:12:13,110 --> 00:12:14,220
There is a default one.

201
00:12:14,220 --> 00:12:18,480
And also I want to do harm to visible our email.

202
00:12:18,570 --> 00:12:22,980
That Misuzu email and email will be our email field.

203
00:12:23,940 --> 00:12:24,360
Right.

204
00:12:24,360 --> 00:12:29,520
And then that user here, name me to the name name will be as a two part.

205
00:12:29,550 --> 00:12:34,950
That will be one of the first names that they are filename as a fast and as the name of the last ungraceful

206
00:12:34,950 --> 00:12:35,280
name.

207
00:12:35,910 --> 00:12:37,650
So name it as a first name.

208
00:12:38,100 --> 00:12:45,530
And also after that I big or another feel that means our database will field as a last name.

209
00:12:45,540 --> 00:12:50,560
So now I just copy it and here I want to update it as it used our last name.

210
00:12:50,970 --> 00:12:51,520
Perfect.

211
00:12:51,540 --> 00:12:53,100
So now for you this.

212
00:12:53,100 --> 00:12:54,690
Our profile is all we have to do.

213
00:12:54,690 --> 00:12:56,940
We have to create one of the function.

214
00:12:56,940 --> 00:12:57,270
Right.

215
00:12:57,690 --> 00:13:03,300
So that is our view into the video to want to create another function.

216
00:13:03,510 --> 00:13:09,430
And also, if you want to access this, our profile function, this user must have the locking.

217
00:13:09,450 --> 00:13:09,750
Right.

218
00:13:10,020 --> 00:13:13,020
That means, first of all, it will be as a logging declared.

219
00:13:13,680 --> 00:13:19,260
I hope you can well understand about it because of all after that user logging this user, then our

220
00:13:19,260 --> 00:13:20,310
profile visible.

221
00:13:20,310 --> 00:13:20,570
Right.

222
00:13:20,580 --> 00:13:23,160
So that means these users must have to be login.

223
00:13:23,550 --> 00:13:29,190
So for the reasons I make that as a logging declared and then I create another function as a Dave and

224
00:13:29,190 --> 00:13:30,840
then I name it as a profile.

225
00:13:31,890 --> 00:13:32,180
What are.

226
00:13:32,370 --> 00:13:38,070
One, right now, I name it as a profile, and then we have to pass that request and first of all,

227
00:13:38,070 --> 00:13:44,000
I did want to return one of the base as written and there would orender with the render.

228
00:13:44,010 --> 00:13:46,590
And do I want to pass out to this parameter?

229
00:13:46,590 --> 00:13:50,750
One will be at the request and also another will be our file.

230
00:13:50,760 --> 00:13:54,930
So I have created the file in our app logging into the app logging.

231
00:13:54,930 --> 00:14:00,030
I have created our profile that is similar profile, not SDM.

232
00:14:00,210 --> 00:14:06,400
And also I want to pass our data because here we have to also pass on the dictionary to the letter.

233
00:14:06,780 --> 00:14:10,050
So now I make it in the context of the context.

234
00:14:10,050 --> 00:14:12,090
And here I pass that dictionary.

235
00:14:13,020 --> 00:14:16,020
Right now I have no data for the reasons I make it as empty.

236
00:14:16,260 --> 00:14:21,470
And also I want to do I want to add another hour menu.

237
00:14:21,930 --> 00:14:26,590
So that is in our basis html into the way the stimuli and the food, that menu.

238
00:14:27,330 --> 00:14:29,170
So we will be as a laconica.

239
00:14:29,190 --> 00:14:29,470
Right.

240
00:14:29,490 --> 00:14:34,910
So for the app when this user will be locked in, then our D profile min will be visible.

241
00:14:36,240 --> 00:14:41,970
So that will be the profile and also to create in our app logging on to create one part that means on

242
00:14:42,070 --> 00:14:43,540
drought path as a profile.

243
00:14:45,270 --> 00:14:46,680
So that is our profile.

244
00:14:47,040 --> 00:14:49,030
So now to do and create this new order.

245
00:14:49,050 --> 00:14:52,650
So that is, you know, our app logging and that is.

246
00:14:52,650 --> 00:14:54,370
Are you all right.

247
00:14:54,390 --> 00:14:56,270
So here we have to do we have to create it.

248
00:14:56,280 --> 00:14:58,090
I just simply copy and paste.

249
00:14:58,100 --> 00:14:59,870
It is to be as a profile.

250
00:15:02,250 --> 00:15:03,680
It'll will be as a profile.

251
00:15:04,080 --> 00:15:09,910
And then in our view area, I have created one of the function, our function name as a profile.

252
00:15:10,590 --> 00:15:10,930
Right.

253
00:15:10,950 --> 00:15:12,800
So now I just simply copy.

254
00:15:13,350 --> 00:15:19,320
And here, in our view, shall we profile and I name it as a profile and also, you know, basis html

255
00:15:19,320 --> 00:15:22,960
into the way the stimuli load our app logging and then our profile.

256
00:15:23,010 --> 00:15:23,380
Right.

257
00:15:23,580 --> 00:15:24,970
So it's not perfect.

258
00:15:24,990 --> 00:15:26,360
So now let's check this out.

259
00:15:26,370 --> 00:15:30,210
If you click the save all, first of all, to check it.

260
00:15:31,820 --> 00:15:39,560
Yeah, everything is running well and now go to our side and right now to our home, I refresh it.

261
00:15:40,050 --> 00:15:44,780
Right now I'm locking you because it's not showing because of all I already declared that this war in

262
00:15:44,780 --> 00:15:47,180
this user will be logging in our police profile.

263
00:15:47,180 --> 00:15:48,370
Men will be visible, right.

264
00:15:48,780 --> 00:15:53,270
Say just name it as a user name as a test and then password.

265
00:15:53,270 --> 00:15:56,380
You want to see four or five knuckleheads a logging?

266
00:15:57,080 --> 00:15:57,440
Yes.

267
00:15:57,460 --> 00:15:59,480
Because he knows our profile is visible.

268
00:15:59,490 --> 00:16:02,450
That means our profile mainly is visible because a profile.

269
00:16:02,900 --> 00:16:03,260
Yes.

270
00:16:03,260 --> 00:16:05,890
You can see our profile page is now successfully loaded.

271
00:16:06,260 --> 00:16:12,260
So here for this user, I have already added that user name for the reason this is not showing that,

272
00:16:12,260 --> 00:16:13,430
only that username.

273
00:16:13,730 --> 00:16:19,240
So I didn't add any fast name and the last name and also didn't add that email for the reasons you can

274
00:16:19,400 --> 00:16:22,780
still make that as a blank and also blank on here.

275
00:16:22,790 --> 00:16:30,350
So here in our profile e-mail, I loaded our username with this user, our field as a user name, email,

276
00:16:30,530 --> 00:16:32,690
and then our first name and the last name.

277
00:16:32,690 --> 00:16:36,140
So we will put that in your email address and the first name, last name.

278
00:16:36,410 --> 00:16:39,320
Then it should be visible in particular that area.

279
00:16:39,380 --> 00:16:43,790
So here, if you want to change it, like here, if you right now, they have no feel for the image

280
00:16:44,510 --> 00:16:45,830
or name, the last name.

281
00:16:45,830 --> 00:16:48,560
So I want to do and actually change our this profile.

282
00:16:48,890 --> 00:16:52,280
So if you want to change that, they have also another building.

283
00:16:52,640 --> 00:17:01,430
One of the plus I show you there is another class as a password reset.

284
00:17:02,060 --> 00:17:04,520
So that is change user change form.

285
00:17:04,550 --> 00:17:08,540
You can see there is also another class as it user changed from class.

286
00:17:08,540 --> 00:17:12,040
So with this class we can actually update our this field.

287
00:17:12,050 --> 00:17:15,850
OK, that means we can actually update it so we can do that work better.

288
00:17:15,860 --> 00:17:20,930
And to continue this process in our next video, I will show that things with the live example.

289
00:17:21,350 --> 00:17:24,680
So thanks for watching and I will see you in the next video.
