38 lines
1.5 KiB
HTML
38 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<title th:text="|${status} - ${message}|">{{status}} - {{message}}</title>
|
|
<th:block th:fragment="meta">
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
<link rel="preconnect" href="https://fonts.gstatic.com"/>
|
|
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono&family=Ubuntu+Mono&display=swap" rel="stylesheet"/>
|
|
<style>
|
|
html {font-family: 'Ubuntu Mono', monospace; font-size: 17px; line-height: 1.3;}
|
|
body{background-color: #404552; color: #c8c8c8;}
|
|
input {background: none; color: inherit; outline: none; border: 0; appearance: none;}
|
|
.green {color: #adff2f;} .blue {color: #5294e2;}
|
|
.inline {display:flex;} .inline > *:last-child {flex-grow: 1;}
|
|
</style>
|
|
</th:block>
|
|
</head>
|
|
<body>
|
|
<th:block th:fragment="inputline_1">
|
|
<p class="inline">
|
|
<span class="green">www-user@elex-project.com</span><span>:</span>
|
|
<span class="blue" th:text="${path}">{{path}}</span><span>$ </span>
|
|
<span th:text="|http get ${path}|">http get {{path}}</span>
|
|
</p>
|
|
</th:block>
|
|
<p th:text="|${status} - ${message}|">{{status}} - {{message}}</p>
|
|
<p th:utext="|Trace:<br/> ${trace}|">Trace:<br /> {{trace}}</p>
|
|
<th:block th:fragment="inputline_2">
|
|
<p class="inline">
|
|
<span class="green">www-user@elex-project.com</span><span>:</span>
|
|
<span class="blue" th:text="${path}">{{path}}</span><span>$ </span><input type="text"/>
|
|
</p>
|
|
</th:block>
|
|
|
|
</body>
|
|
</html>
|