tuned-city
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

CreateBookmark.html
text/html

Download raw (475 bytes)

<div class="content">
    <div class="label">
        Select a shelf
    </div>
    <select name="shelf">
    <% for(var i = 0; i < data.shelves.length; i++){ var s=data.shelves[i]; %>
    <option value="<%= s._id %>"><%- s.title %></option>
    <% } %>
    </select>
    
    <div class="label">
        Label
    </div>
    <input name="note" ></input>
</div>

<div class="buttons">
    <button class="close">close</button>
    <button class="submit">submit</button>
</div>