Form: <%= q["title"] %>

Create your form here: /#maker
<% const items = [ { n: "client-name", d: "Client name", p: "Peter Novak", t: "text" }, { n: "client-address", d: "Client address", p: "Ravna Ulica 13", t: "text" }, { n: "client-city", d: "Client city", p: "1000 Ljubljana", t: "text" }, { n: "issuer-name", d: "Issuer name", p: "Spletne strani n'123", t: "text" }, { n: "issuer-address", d: "Issuer address", p: "Za deveto smreko 15 k", t: "text" }, { n: "issuer-city", d: "Issuer city", p: "1000 Ljubljana", t: "text" }, { n: "iban", d: "IBAN", p: "SI56047500000280672", t: "text" }, { n: "amount", d: "Amount", p: "35090 (350.90€)", t: "number" }, { n: "code", d: "Code", p: "OTHR", t: "text" }, { n: "purpose", d: "Purpose", p: "moutain bike first half", t: "text" }, { n: "reference", d: "Reference", p: "SI121234567890120", t: "text" } ] %> <% for (const i of items) { %> <% const str = String(q[i.n]) const readonly = (str != "" && !str.includes("*") ? "readonly" : "") const val = str.replace("*", "") %>
type="<%= i.t %>" placeholder="<%= i.p %>" name="<%= i.n %>">
<% } %>