33@if (profile) {
44< div class ="page ">
55 < div class ="auth__greeting ">
6- < h3 class ="auth__title ">
7- Добро пожаловать, {{ profile.firstName }} {{ profile.lastName }}! ✌️
8- </ h3 >
9- < p class ="auth__info ">
10- Заполни уточняющие данные о себе, которые помогут сформировать сильное резюме и будут отражать
11- твой опыт.
12- </ p >
6+ < h3 class ="auth__title "> Привет, {{ profile.firstName }} {{ profile.lastName }}! ✌️</ h3 >
7+ < p class ="auth__info "> Расскажи о себе, чтобы твое резюме было сильным и отражало твой опыт.</ p >
138 </ div >
149 < form [formGroup] ="stageForm " class ="page__form " (submit) ="onSubmit() ">
1510 < div class ="page__first-row ">
@@ -35,7 +30,7 @@ <h3 class="auth__title">
3530 id ="city "
3631 [error] ="city | controlError "
3732 type ="text "
38- placeholder ="Откуда ты "
33+ placeholder ="Где живешь? "
3934 formControlName ="city "
4035 > </ app-input >
4136 @if (city | controlError: "required") {
@@ -50,6 +45,25 @@ <h3 class="auth__title">
5045 < div class ="page__first-row ">
5146 < p class ="text-bold-body-14 "> Образование</ p >
5247
48+ @if (stageForm.get("educationLevel"); as educationLevel) {
49+ < fieldset >
50+ < label for ="educationLevel " class ="field-label "> Уровень образования</ label >
51+ < app-select
52+ [selectedId] ="selectedEducationLevelId() "
53+ formControlName ="educationLevel "
54+ placeholder ="Высшее образование-магистратура "
55+ [options] ="educationLevelList "
56+ >
57+ < i appIcon icon ="arrow-no-body " appSquare ="32 "> </ i >
58+ </ app-select >
59+ @if (educationLevel | controlError: "required") {
60+ < div class ="text-body-14 error ">
61+ {{ errorMessage.VALIDATION_REQUIRED }}
62+ </ div >
63+ }
64+ </ fieldset >
65+ }
66+
5367 < div class ="page__years ">
5468 @if (stageForm.get("entryYear"); as entryYear) {
5569 < fieldset class ="years__left ">
@@ -94,7 +108,7 @@ <h3 class="auth__title">
94108 id ="organizationName "
95109 [error] ="organizationName | controlError "
96110 type ="text "
97- placeholder ="вуз / коллежд / школа "
111+ placeholder ="вуз / колледж / школа "
98112 formControlName ="organizationName "
99113 > </ app-input >
100114 @if (organizationName | controlError: "required") {
@@ -103,23 +117,6 @@ <h3 class="auth__title">
103117 </ div >
104118 }
105119 </ fieldset >
106- } @if (stageForm.get("educationLevel"); as educationLevel) {
107- < fieldset >
108- < label for ="educationLevel " class ="field-label "> Уровень образования</ label >
109- < app-select
110- [selectedId] ="selectedEducationLevelId() "
111- formControlName ="educationLevel "
112- placeholder ="Высшее образование-магистратура "
113- [options] ="educationLevelList "
114- >
115- < i appIcon icon ="arrow-no-body " appSquare ="32 "> </ i >
116- </ app-select >
117- @if (educationLevel | controlError: "required") {
118- < div class ="text-body-14 error ">
119- {{ errorMessage.VALIDATION_REQUIRED }}
120- </ div >
121- }
122- </ fieldset >
123120 } @if (stageForm.get("educationStatus"); as educationStatus) {
124121 < fieldset >
125122 < label for ="educationStatus " class ="field-label "> Должность</ label >
@@ -139,7 +136,7 @@ <h3 class="auth__title">
139136 </ fieldset >
140137 } @if (stageForm.get("description"); as description) {
141138 < fieldset class ="page__field ">
142- < label for ="description " class ="field-label "> Краткое описание </ label >
139+ < label for ="description " class ="field-label "> Профиль обучения </ label >
143140 < app-input
144141 id ="description "
145142 [error] ="description | controlError "
@@ -203,6 +200,25 @@ <h3 class="auth__title">
203200
204201 < div class ="page__first-row ">
205202 < p class ="text-bold-body-14 "> Место работы</ p >
203+
204+ @if (stageForm.get("organizationNameWork"); as organizationNameWork) {
205+ < fieldset >
206+ < label for ="organizationNameWork " class ="field-label "> Название</ label >
207+ < app-input
208+ id ="organizationNameWork "
209+ [error] ="organizationNameWork | controlError "
210+ type ="text "
211+ placeholder ="Проколлаб "
212+ formControlName ="organizationNameWork "
213+ > </ app-input >
214+ @if (organizationNameWork | controlError: "required") {
215+ < div class ="text-body-14 error ">
216+ {{ errorMessage.VALIDATION_REQUIRED }}
217+ </ div >
218+ }
219+ </ fieldset >
220+ }
221+
206222 < div class ="page__years ">
207223 @if (stageForm.get("entryYearWork"); as entryYearWork) {
208224 < fieldset class ="years__left ">
@@ -243,23 +259,7 @@ <h3 class="auth__title">
243259 }
244260 </ div >
245261
246- @if (stageForm.get("organizationNameWork"); as organizationNameWork) {
247- < fieldset >
248- < label for ="organizationNameWork " class ="field-label "> Название</ label >
249- < app-input
250- id ="organizationNameWork "
251- [error] ="organizationNameWork | controlError "
252- type ="text "
253- placeholder ="Проколлаб "
254- formControlName ="organizationNameWork "
255- > </ app-input >
256- @if (organizationNameWork | controlError: "required") {
257- < div class ="text-body-14 error ">
258- {{ errorMessage.VALIDATION_REQUIRED }}
259- </ div >
260- }
261- </ fieldset >
262- } @if (stageForm.get("jobPosition"); as jobPosition) {
262+ @if (stageForm.get("jobPosition"); as jobPosition) {
263263 < fieldset >
264264 < label for ="jobPosition " class ="field-label "> Должность</ label >
265265 < app-input
0 commit comments