mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-11-08 19:30:10 +00:00
Harvey Tindall
418f3c4566
when re-doing makefile, I removed the part where CSS is written to bundle.css, then later moved to v3bundle.css. To solve, crash.html now just directly requests web/css/v3bundle.css (and web/js/crash.js, removing the `mv` line in the makefile too).
46 lines
2.2 KiB
HTML
46 lines
2.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<link inline rel="stylesheet" type="text/css" href="web/css/v3bundle.css">
|
|
{{ template "header.html" . }}
|
|
<title>Crash report</title>
|
|
</head>
|
|
<body>
|
|
<div class="page-container m-2 lg:my-20 lg:mx-64">
|
|
<div class="card ~critical sectioned">
|
|
<section class="section ~critical">
|
|
<span class="heading">Crash report for jfa-go</span>
|
|
{{ if .Err }}
|
|
<div class="font-mono bg-inherit pre-line mt-4 mb-4">
|
|
Error: {{ .Err }}
|
|
</div>
|
|
{{ end }}
|
|
<a class="button ~critical mb-4" target="_blank" href="https://github.com/hrfee/jfa-go/issues/new/choose">Create an Issue</a>
|
|
</section>
|
|
<section class="section ~neutral @low">
|
|
<div class="flex flex-row justify-between">
|
|
<span class="subheading">Full Log</span>
|
|
<span class="button ~urge ml-4" id="copy-log">Copy</span>
|
|
</div>
|
|
<div class="row mb-4">
|
|
<label class="col mr-4">
|
|
<span class="button ~neutral @high supra full-width center" id="button-log-normal">Normal</span>
|
|
</label>
|
|
<label class="col mr-4">
|
|
<span class="button ~neutral @low supra full-width center" id="button-log-sanitized">Sanitized</span>
|
|
</label>
|
|
</div>
|
|
<div id="log-normal">
|
|
<pre class="font-mono bg-inherit pre-line">{{ .Log }}</pre>
|
|
</div>
|
|
<div id="log-sanitized" class="unfocused">
|
|
<p class="subheading">An attempt has been made to remove sensitive info, but make sure to check yourself.</p>
|
|
<pre class="font-mono bg-inherit pre-line">{{ .SanitizedLog }}</pre>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
<script inline src="web/js/crash.js"></script>
|
|
</body>
|
|
</html>
|