HelloWorld / templates /submit_solution.html
chris999's picture
Upload 10 files
0157ea9 verified
raw
history blame contribute delete
428 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Submit Solution</title>
</head>
<body>
<h1>Submit Solution</h1>
<form action="/submit_solution/{{ issue_id }}" method="POST">
<textarea name="solution" placeholder="Provide your solution" required rows="4" cols="50"></textarea><br><br />
<input type="submit" value="Submit Solution">
</form>
</body>
</html>