|
6 | 6 | </head> |
7 | 7 | <body> |
8 | 8 | {{> ../../header/header pageRoute='anketa'}} |
9 | | - <main>sign up first page</main> |
| 9 | + <main> |
| 10 | + <div class="first-form"> |
| 11 | + <h2>{{ htmlWebpackPlugin.options.content.translations.ff_h }}</h2> |
| 12 | + <form> |
| 13 | + <div class="warning hidden"> |
| 14 | + {{ htmlWebpackPlugin.options.content.translations.ff_you_are_too_young }} |
| 15 | + </div> |
| 16 | + <div class="info-input"> |
| 17 | + <label for="name" class="question"> |
| 18 | + {{ htmlWebpackPlugin.options.content.translations.ff_name |
| 19 | + }}<span class="important">*</span> |
| 20 | + </label> |
| 21 | + <input |
| 22 | + type="text" |
| 23 | + name="name" |
| 24 | + id="name" |
| 25 | + placeholder="{{ htmlWebpackPlugin.options.content.translations.ff_name_pl }}" |
| 26 | + pattern="^[\w'"а-яА-ЯёЁіІїЇєЄґҐ\-.,:]+" |
| 27 | + required |
| 28 | + /> |
| 29 | + </div> |
| 30 | + |
| 31 | + <div class="info-input"> |
| 32 | + <label for="surname" class="question"> |
| 33 | + {{ htmlWebpackPlugin.options.content.translations.ff_surname |
| 34 | + }}<span class="important">*</span> |
| 35 | + </label> |
| 36 | + <input |
| 37 | + type="text" |
| 38 | + name="surname" |
| 39 | + id="surname" |
| 40 | + placeholder="{{ htmlWebpackPlugin.options.content.translations.ff_surname_pl }}" |
| 41 | + pattern="^[\w'"а-яА-ЯёЁіІїЇєЄґҐ\-.,:]+" |
| 42 | + required |
| 43 | + /> |
| 44 | + </div> |
| 45 | + <div class="info-input"> |
| 46 | + <label for="date" class="question" |
| 47 | + >{{ htmlWebpackPlugin.options.content.translations.ff_birthday |
| 48 | + }}<span class="important">*</span></label |
| 49 | + > |
| 50 | + <input |
| 51 | + type="date" |
| 52 | + id="date" |
| 53 | + name="birthday" |
| 54 | + min="1920-12-31" |
| 55 | + value="2000-01-31" |
| 56 | + required |
| 57 | + data-ng-change="setIteminLS('birthday', student.birthday)" |
| 58 | + data-ng-class="{ 'has-error' : firstForm.birthday.$invalid && subm}" |
| 59 | + /> |
| 60 | + </div> |
| 61 | + <div class="row pa center"> |
| 62 | + <button class="button-primary"> |
| 63 | + {{ htmlWebpackPlugin.options.content.translations.ff_submit }} |
| 64 | + </button> |
| 65 | + </div> |
| 66 | + </form> |
| 67 | + </div> |
| 68 | + </main> |
10 | 69 | {{> ../../footer/footer}} |
11 | 70 | </body> |
12 | 71 | </html> |
0 commit comments