This commit is contained in:
2024-12-26 21:46:13 -05:00
parent 37eb7eebe8
commit 70f434cae3
5 changed files with 60 additions and 32 deletions

View File

@@ -4,14 +4,18 @@
<title>Your Ticket</title>
<link rel="stylesheet" href="styles.css">
</head>
<%- include('partials/nav') %>
<body>
<form id="editor">
Transfer Ticket:
<input type="edit" placeholder="yourfriend@xyz.com" value="<%=offered%>" id="offered">
<button id="Submit" type="button">Transfer</button>
<br>
</form>
<img width=300 height=300 src="https://via.placeholder.com/150" alt="Placeholder Image">
<%- include('partials/nav') %>
<div class="content">
To use <%=ticket%>, scan this QR Code:<br>
<img class="qrcode-image" width=300 height=300 src="<%=qrcode%>" alt="QR Code">
<form id="editor" method="POST">
Or transfer <%=ticket%> to:<br>
<input type="hidden" name="ticket" value="<%=ticket%>">
<input type="email" placeholder="yourfriend@xyz.com" value="<%=offered%>" name="offered">
<button id="Submit" type="submit">Transfer</button>
<br>
</form>
</div>
</body>
</html>