Advertisement
Guest User

Untitled

a guest
Dec 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.             <form class="reg__control--group">
  2.  
  3.                 <label class="reg__label">
  4.                     <span class="reg__label-title">
  5.                         {{ $t('registrations.firstName') }}
  6.                     </span>
  7.  
  8.                     <input-filling
  9.                             :placeholder="inputList.firstName.placeholder"
  10.                             :errorText="errorText"
  11.                             :isRequired="inputList.firstName.isRequired"
  12.                             :focus="inputList.firstName.focus"
  13.                             @input="$store.state.registrations.user.firstName = $event"
  14.  
  15.                     ></input-filling>
  16.  
  17.                 </label>
  18.  
  19.                 <label class="reg__label">
  20.                     <span class="reg__label-title">
  21.                         {{ $t('registrations.lastName') }}
  22.                     </span>
  23.                     <input-filling
  24.                             :placeholder="inputList.lastName.placeholder"
  25.                             :errorText="errorText"
  26.                             :isRequired="inputList.lastName.isRequired"
  27.                             :focus="inputList.lastName.focus"
  28.                             @input="$store.state.registrations.user.lastName = $event"
  29.  
  30.                     ></input-filling>
  31.  
  32.                 </label>
  33.  
  34.                 <label class="reg__label">
  35.                      <span class="reg__label-title">
  36.                         {{ $t('registrations.occupation') }}
  37.                     </span>
  38.                     <dropdown
  39.                             :listItems="occupation.listItems"
  40.                             :defaultValue="occupation.defaultValue"
  41.                             :isLocale="occupation.isLocale"
  42.                             @click="$store.state.registrations.companyInfo.typeWork = $event.id, occupation.key = $event.key"
  43.                     ></dropdown>
  44.                 </label>
  45.  
  46.                 <label class="reg__label">
  47.                      <span class="reg__label-title">
  48.                         {{ $t('registrations.placeOfWork') }}
  49.                     </span>
  50.                     <dropdown
  51.                             :listItems="placeOfWork.listItems"
  52.                             :defaultValue="placeOfWork.defaultValue"
  53.                             :isLocale="placeOfWork.isLocale"
  54.                             @click="$store.state.registrations.companyInfo.placeWork = $event.id"
  55.                     ></dropdown>
  56.                 </label>
  57.  
  58.                 <label class="reg__label">
  59.                     <span class="reg__label-title">
  60.                         {{ $t('registrations.site') }}
  61.                     </span>
  62.                     <input-filling
  63.                             :placeholder="inputList.site.placeholder"
  64.                             :errorText="errorText"
  65.                             :isRequired="inputList.site.isRequired"
  66.                             :focus="inputList.site.focus"
  67.                             @input="$store.state.registrations.companyInfo.site = $event"
  68.  
  69.                     ></input-filling>
  70.  
  71.                 </label>
  72.  
  73.                 <label class="reg__label">
  74.                     <span class="reg__label-title">
  75.                         {{ $t('registrations.company') }}
  76.                     </span>
  77.                     <input-filling
  78.                             :placeholder="inputList.company.placeholder"
  79.                             :errorText="errorText"
  80.                             :isRequired="inputList.company.isRequired"
  81.                             :focus="inputList.company.focus"
  82.                             @input="$store.state.registrations.companyInfo.company = $event"
  83.  
  84.                     ></input-filling>
  85.  
  86.                 </label>
  87.  
  88.                 <label class="reg__label">
  89.                     <span class="reg__label-title">
  90.                         {{ $t('registrations.companySize') }}
  91.                     </span>
  92.                     <dropdown
  93.                             :listItems="companySize.listItems"
  94.                             :defaultValue="companySize.defaultValue"
  95.                             :isLocale="companySize.isLocale"
  96.                             @click="$store.state.registrations.companyInfo.companySize = $event"
  97.  
  98.                     ></dropdown>
  99.  
  100.                 </label>
  101.  
  102.                 <button class="btn btn-discount btn-discount--green"
  103.                         :disabled="btnDisable"
  104.                 >
  105.                     {{ $t('registrations.end') }}
  106.                 </button>
  107.  
  108.  
  109.             </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement