19 lines
445 B
HTML
19 lines
445 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Submit</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<form action="/submit" method="POST">
|
|
<label for="ticket">ticket</label>
|
|
<input type="text" name="ticket" id="ticket" placeholder="1234567890" required>
|
|
<button> Submit </button>
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|