Sha256: 02949e31c3ef7d01ce14f42a2bd7cbeeb098345f0178286aa25392960715496a

Contents?: true

Size: 1.43 KB

Versions: 59

Compression:

Stored size: 1.43 KB

Contents

<!-- expects a local called "user", which refers to the user for which the admin is executing actions -->

<!--  -->
<% if user.additional_login_param && user.additional_login_param_status == 1 %>
<h4> Resend the SMS OTP To the User </h4>

<%= render :partial => "auth/confirmations/resend_sms_otp.html.erb", locals: {user: user} %>

<% end %>

<% if !user.confirmed? || user.pending_reconfirmation? %>
	<h4> Resend the Confirmation Email to the User </h4>
	<%= form_for(user, as: user.class.name.underscore, url: confirmation_path(user.class.name.underscore), html: { method: :post, id: "resend_confirmation_email_form"}) do |f| %>
		<div class="form fields">
			<div class="input_field">
				<%= f.text_field :email, :value => user.email %>
			</div>
			<div class="input_field">
				<%= f.label :email %>
			</div>
		</div>
		<div class="submit">
			<%= f.submit "RESEND CONFIRMATION EMAIL" %>
		</div>
	<% end %>
<% end %>


<!-- we are planning to call update profile -->
<h4> Resend the Reset Password Link to the User</h4>

<%= form_for(user, as: user.class.name.underscore, url: profile_path({:id => user.id.to_s}), html: { method: :put, id: "resend_reset_password_link_form"}) do |f| %>
	<div class="form fields">
		<%= hidden_field_tag("resource",user.class.name.downcase.pluralize) %>
		<%= f.hidden_field(:created_by_admin,:value => true) %>
	</div>
	<div class="submit">
		<%= f.submit "Send reset password instructions" %>
	</div>
<% end %>






Version data entries

59 entries across 59 versions & 1 rubygems

Version Path
wordjelly-auth-1.6.0 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.5.9 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.5.8 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.5.7 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.5.6 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.5.5 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.5.4 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.5.3 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.5.2 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.5.1 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.5.0 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.4.9 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.4.8 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.4.7 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.4.6 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.4.5 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.4.4 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.4.3 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.4.2 app/views/auth/admin_create_users/_admin_actions.html.erb
wordjelly-auth-1.4.0 app/views/auth/admin_create_users/_admin_actions.html.erb