goffy/templates/result.html

22 lines
544 B
HTML
Raw Normal View History

2024-12-31 19:14:02 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="/static/css/index.css" type="text/css" media="all">
<title>Goffy</title>
</head>
<body>
<div class="main">
<p>{{ .Message }}</p>
<form id="searchform" action="/result?url=" method="get">
<input id="search" placeholder="Unesite novi URL" type="text" name="url" autocomplete="off"
data-type="query" />
</form>
</div>
</body>
</html>