32 lines
561 B
HTML
32 lines
561 B
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<!-- Required meta tags -->
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
|
||
|
|
|
||
|
|
<!-- Bootstrap CSS -->
|
||
|
|
<link rel="stylesheet" href="styles/css">
|
||
|
|
|
||
|
|
<title>afr0dita Message</title>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
background-color: #FFFDFA;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
|
||
|
|
|
||
|
|
<div class="d-flex align-items-center hv-100 vh-100">
|
||
|
|
<div class="container text-center">
|
||
|
|
<div>{{.Msj}}</div>
|
||
|
|
<a class="my-3 badge rounded-pill bg-dark" href="/">Back</a>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
|
||
|
|
|