2024-12-26 00:33:23 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>Your Ticket</title>
|
|
|
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2024-12-26 21:46:13 -05:00
|
|
|
<%- include('partials/nav') %>
|
|
|
|
|
<div class="content">
|
|
|
|
|
To use <%=ticket%>, scan this QR Code:<br>
|
2024-12-28 19:31:45 -05:00
|
|
|
<img class="qrcode-image" width=300 height=300 src="<%=qrcode%>" alt="QR Code"><br>
|
|
|
|
|
Or visit this URL: "<%=useurl%>"
|
|
|
|
|
<form id="editor" method="POST" action="/oneticket">
|
2024-12-26 21:46:13 -05:00
|
|
|
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>
|
2024-12-26 00:33:23 -05:00
|
|
|
</body>
|
|
|
|
|
</html>
|