22 lines
544 B
HTML
22 lines
544 B
HTML
<!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>
|