Files
sous-podzim2024-app/src/templates/gamble.ejs
2024-09-03 17:09:28 +02:00

22 lines
617 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="/bootstrap.min.css" />
<script src="/bootstrap.bundle.min.js"></script>
<title>Index</title>
</head>
<body data-bs-theme="dark">
<form action="/gamble/<%= person.personId %>" method="post" enctype="multipart/form-data">
<label for="fname">Points:</label><br>
<input type="number" id="points" name="points"><br>
<label for="fname">Secret</label><br>
<input type="text" id="secret" name="secret"><br>
<input type="submit" value="Submit">
</form>
</body>
</html>