Sha256: eeb97a7d3e27c81b63a3ccc792425e9388876ea05139b5c18322c62dbea58f7a

Contents?: true

Size: 1.81 KB

Versions: 10

Compression:

Stored size: 1.81 KB

Contents

%div{ 'ng-init' => "user = { $pwdScore: {}, name: '#{resource.name}', surname: '#{resource.surname}' }" }

= form_for(resource, as: resource_name, :url => mno_enterprise.user_confirmation_finalize_path, :html => { 'name' => 'loginForm', :class => 'text-center' }) do |f|
  = f.hidden_field :confirmation_token, value: @confirmation_token
  
  %div{ layout: '', 'layout-sm' => 'column' }
    %md-input-container{ flex: '' }
      %label Name
      = f.text_field :name, required: true, 'ng-model' => 'user.name'
  
    %md-input-container{ flex: '' }
      %label Surname
      = f.text_field :surname, required: true, 'ng-model' => 'user.surname'
  
  
  
  - if @phone_required && MnoEnterprise.style.devise.phone_required
    %div{ layout: '', 'layout-sm' => 'column' }
      
      %md-input-container
        %md-select{ placeholder: "Ext.", 'ng-model' => "user.phone_country_code", style: 'line-height: 26px;' }
          %md-option{ 'ng-value' => 'opt.alpha2', 'ng-repeat' => "opt in #{ Country.all.map {|cntry, alpha2| {alpha2: alpha2, code: Country.new(alpha2).country_code} }.to_json }"  }
            {{ opt.alpha2 }} +{{ opt.code }}
        = f.hidden_field :phone_country_code, 'ng-model' => 'user.phone_country_code'
      
      %md-input-container{ flex: '' }
        %label Phone
        = f.text_field :phone, required: true, 'ng-model' => 'user.phone_number'
  
  %div{'mno-password' => 'user', form: "loginForm"}


  %div
    %button{ class: "md-raised md-accent", 'md-button' => true, type: "submit", 'ng-click' => 'hasClicked = true', 'ng-disabled' => 'loginForm.$invalid' } Create Account
  
  %br
  
  %div
    %p 
      By clicking 'Create Account' you are agreeing to
      = "#{MnoEnterprise.app_name}'s"
      Terms of Use and Privacy Policy
  
  %md-progress-linear{ 'md-mode' => "indeterminate", 'ng-show' => 'hasClicked' }

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
mno-enterprise-api-2.0.9 app/views/mno_enterprise/auth/confirmations/material/_form.html.haml
mno-enterprise-api-2.0.8 app/views/mno_enterprise/auth/confirmations/material/_form.html.haml
mno-enterprise-api-2.0.7 app/views/mno_enterprise/auth/confirmations/material/_form.html.haml
mno-enterprise-api-2.0.6 app/views/mno_enterprise/auth/confirmations/material/_form.html.haml
mno-enterprise-api-2.0.5 app/views/mno_enterprise/auth/confirmations/material/_form.html.haml
mno-enterprise-api-2.0.4 app/views/mno_enterprise/auth/confirmations/material/_form.html.haml
mno-enterprise-api-2.0.3 app/views/mno_enterprise/auth/confirmations/material/_form.html.haml
mno-enterprise-api-2.0.2 app/views/mno_enterprise/auth/confirmations/material/_form.html.haml
mno-enterprise-api-2.0.1 app/views/mno_enterprise/auth/confirmations/material/_form.html.haml
mno-enterprise-api-2.0.0 app/views/mno_enterprise/auth/confirmations/material/_form.html.haml