Sha256: 8dc49db67e35db5d1d8c60c5e56d00449d2b0dc3dde3d2f6d7cb614a18c03ddd

Contents?: true

Size: 1.98 KB

Versions: 3

Compression:

Stored size: 1.98 KB

Contents

<!-- PHCTitleSEO Title Variables -->
<% phc_title resource_name.to_s.humanize + " Unlock Password" %>
<% phc_title_tagline "Unlock Your " + resource_name.to_s.humanize + " Unlock Password" %>
<% phc_breadcrumb_one link_to resource_name.to_s.humanize + " Home", phcdevworks_accounts.welcome_status_page_path %>
<% phc_breadcrumb_two yield(:phc_title_tagline) %>
<!-- PHCTitleSEO Title Variables -->

<!-- Page Bradcrumbs -->
<ol class="breadcrumb pull-right">
    <li class="breadcrumb-item"><%= yield(:phc_breadcrumb_one) %></li>
    <li class="breadcrumb-item active"><%= yield(:phc_breadcrumb_two) %></li>
</ol>
<!-- Page Bradcrumbs -->

<!-- Page Header -->
<h2 class="page-header"><%= yield(:phc_title) %></h2>
<!-- Page Header -->

<!-- Page Content -->
<div class="row">
	<div class="col-lg-12">

		<!-- Panel -->
		<div class="panel panel-inverse">

			<!-- Panel - Heading -->
			<div class="panel-heading">
				<h4 class="panel-title"><%= yield(:phc_title) %></h4>
			</div>
			<!-- Panel - Heading -->

			<!-- Panel - Body -->
			<div class="panel-body">

				<!-- New Form -->
                <%= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |form| %>

					<!-- Devise Error Message -->
					<%= render "devise/shared/error_messages", resource: resource %>
					<!-- Devise Error Message -->

                    <div class="form-group">
                        <%= form.label :email %>
                        <%= form.email_field :email, class: "form-control", autofocus: true, value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email) %>
                    </div>
                    
                    <div class="actions">
                        <%= form.submit "Resend Confirmation Instructions", class: "btn btn-primary block full-width" %>
                    </div>

                <% end %>
				<!-- New Form -->

			</div>
			<!-- Panel - Body -->

		</div>
		<!-- Panel -->

	</div>
</div>
<!-- Page Content -->

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phcdevworks_accounts-2.3.0 app/views/users/confirmations/new.html.erb
phcdevworks_accounts-2.2.3 app/views/users/confirmations/new.html.erb
phcdevworks_accounts-2.2.1 app/views/users/confirmations/new.html.erb