Sha256: 666690a3f66a7822ed708acd7b01cb22db3f091f5fe74a2325e604c8ad432724

Contents?: true

Size: 1.12 KB

Versions: 19

Compression:

Stored size: 1.12 KB

Contents

.row
  .col.s12
    .card-panel
      %h5= t('.invite_user')
      = simple_form_for User.new, url: invitation_path('user'), html: {method: :post} do |f|
        = devise_error_messages!

        %input{ type: 'hidden', name: 'user[account_id]', value: account_id }
        .form-inputs
          .row
            .input-field.col.s12
              = f.input :name, class: :validate, autofocus: true

          .row
            .input-field.col.s12
              = f.input :email, class: :validate

        .form-actions.right-align
          = f.button :submit, t('.invite_user_submit')

:coffeescript

  $ ->
    $('input[name="commit"]').on 'click', (e) ->
      e.preventDefault()
      e.stopPropagation()
      $form = $(e.target).closest('form')
      data = $form.serialize()
      jqxhr = $.ajax
        url: '/users/invitation.js',
        type: 'post',
        data: data
      .done (response) ->
        $('#account_users').append(response)
        fadeItOut $('.message_container .alert-success')
      .fail (response) ->
        $('body').append(response.responseText)
        fadeItOut $('.message_container .alert-danger'), 5000

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
oxen_account-0.4.14 app/views/users/invitations/_new.html.haml
oxen_account-0.4.13 app/views/users/invitations/_new.html.haml
oxen_account-0.4.12 app/views/users/invitations/_new.html.haml
oxen_account-0.4.11 app/views/users/invitations/_new.html.haml
oxen_account-0.4.9 app/views/users/invitations/_new.html.haml
oxen_account-0.4.8 app/views/users/invitations/_new.html.haml
oxen_account-0.4.7 app/views/users/invitations/_new.html.haml
oxen_account-0.4.1 app/views/users/invitations/_new.html.haml
oxen_account-0.3.4 app/views/users/invitations/_new.html.haml
oxen_account-0.3.3 app/views/users/invitations/_new.html.haml
oxen_account-0.3.2 app/views/users/invitations/_new.html.haml
oxen_account-0.3.1 app/views/users/invitations/_new.html.haml
oxen_account-0.3.0 app/views/users/invitations/_new.html.haml
oxen_account-0.2.9 app/views/users/invitations/_new.html.haml
oxen_account-0.2.8 app/views/users/invitations/_new.html.haml
oxen_account-0.2.4 app/views/users/invitations/_new.html.haml
oxen_account-0.2.2 app/views/users/invitations/_new.html.haml
oxen_account-0.2.1 app/views/users/invitations/_new.html.haml
oxen_account-0.2.0 app/views/users/invitations/_new.html.haml