15 lines
326 B
HTML
15 lines
326 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{title}</title>
|
|
<link rel="stylesheet" href="/style.css" />
|
|
</head>
|
|
<body onload="document.querySelector('input').focus()">
|
|
<h1>{meta}</h1>
|
|
<form method="POST" action={url}>
|
|
<input type="{type}" name="input" style="width:100%" />
|
|
<br /><br />
|
|
<input type="submit">
|
|
</form>
|
|
</body>
|
|
</html>
|