18 lines
494 B
Plaintext
18 lines
494 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<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">
|
|
</body>
|
|
</html>
|