canvasapp/templates/convert.html

17 lines
460 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Markdown to HTML Converter</title>
<style>
textarea { width: 75%; height: 45rem;}
.title {color:rgb(65, 65, 65);}
</style>
</head>
<body>
<h1 class="title">Markdown to HTML Converter</h1>
<form method="POST" action="/md">
<textarea name="markdown_input" rows="10" cols="50"></textarea><br>
<input type="submit" value="Convert">
</form>
</body>
</html>