<!doctype html><html><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="stylesheet" href="/static/app.css"><title><%=invoice.invoice_number%></title></head><body class="publicbody"><div class="paycard"><div class="brandmark big">MH</div><p><%=invoice.brand_name%></p><h1><%=money(invoice.total,invoice.currency)%></h1><p>Invoice <b><%=invoice.invoice_number%></b></p><p>For <%=invoice.customer_name||'Customer'%></p><span class="status <%=invoice.status%>"><%=invoice.status%></span><% if(invoice.payment_url&&invoice.status!=='paid'){ %><a href="<%=invoice.payment_url%>" class="primary full">Continue to secure payment</a><% } %><small>Card details are processed by the selected payment provider and are not stored here.</small></div></body></html>
