archive
/
lantern
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
lantern/lantern/templates/error.html

26 lines
470 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Error!</title>
<style type="text/css">
body {
width: 75%;
padding-top: 50px;
margin: 0 auto;
text-align: center;
font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
font-size: 80%;
color: #333;
}
h1 {
margin: 30px 0;
}
</style>
</head>
<body>
<h1>Something went wrong!</h1>
<p>{{ error }}</p>
</body>
</html>