Sha256: 87e56a94b841a2d0927660cf75ec2a99f7a676f2625e9ef4b9dfaeade6240d62

Contents?: true

Size: 1.22 KB

Versions: 2

Compression:

Stored size: 1.22 KB

Contents

<h1>Lockr password manager</h1>

<div class="spacebelow">
    <a id="addnew" class="button">Add new site</a>
</div>
<div class="entries">
    <table class="entrytable">
        <thead>
            <th>
                Site ID
            </th>
            <th>
                Username
            </th>
            <th>
                Password functions
            </th>
        </thead>
        <tbody>
            <% for entry in directory.keys() %>
                <% if directory[entry] %>
                    <% for store in directory[entry].values() %>
                        <%= erb :entryrow, :locals => { :store => store } %>
                    <% end %>
                <% else %>
                    <tr>
                        <td>
                            <%= entry %>
                        </td>
                        <td>
                            Unable to decrypt
                        </td>
                        <td>
                            &nbsp;
                        </td>
                <% end%>
            <% end %>
        </tbody>
    </table>
    
    <%= erb(:addnewsite, :layout => false) %>
    <%= erb(:changepwd, :layout => false) %>
    <%= erb(:deletepwd, :layout => false) %>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
lockr-0.5.1 resources/views/index.erb
lockr-0.5.0 resources/views/index.erb