Packages

A Generator to support user registration

Current section

Files

Jump to
curator_registerable priv templates curator_registerable.install show.html.eex
Raw

priv/templates/curator_registerable.install/show.html.eex

<div class="panel panel-primary">
<div class="panel-heading">
<h2 class="panel-title">Showing Account</h2>
</div>
<div class="panel-body">
<table class="table table-hover">
<tbody>
<tr><td><strong>Email:</strong></td> <td><%%= @user.email %></td></tr>
</tbody>
</table>
</div>
<div class="panel-footer clearfix">
<%%= link "Edit User", to: registration_path(@conn, :edit), class: "btn btn-info btn-xs" %>
</div>
</div>