comics/templates/confirm.html

19 lines
553 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="icon" type="/image/png" href="/static/img/favicon.png"/>
<link rel="stylesheet" href="/static/css/confirm.css">
<link rel="stylesheet" href="/static/css/base.css">
<title>{{ .Action }}</title>
</head>
<body>
<div class="confirm">
<h1>{{ .Message }}</h1>
<div class="options">
<a href="{{ .OnYes }}"><p>&ltYes&gt</p></a>
<a href="{{ .OnNo }}"><p>&ltNo&gt</p></a>
</div>
</div>
</body>
</html>