mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-11-04 17:30:11 +00:00
Harvey Tindall
18ae03554f
instead of adding dark: variants to each element, a preprocessor script adds them. still needs to be implemented to typescript.
50 lines
2.4 KiB
HTML
50 lines
2.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<link inline rel="stylesheet" type="text/css" href="bundle.css">
|
|
{{ template "header.html" . }}
|
|
<title>Crash report</title>
|
|
</head>
|
|
<body>
|
|
<div class="page-container">
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="card ~critical sectioned">
|
|
<section class="section ~critical">
|
|
<span class="heading">Crash report for jfa-go</span>
|
|
{{ if .Err }}
|
|
<div class="monospace pre-line mt-1 mb-1">
|
|
Error: {{ .Err }}
|
|
</div>
|
|
{{ end }}
|
|
<a class="button ~critical mb-1" 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-expand">
|
|
<span class="subheading">Full Log</span>
|
|
<span class="button ~urge ml-half" id="copy-log">Copy</span>
|
|
</div>
|
|
<div class="row mb-1">
|
|
<label class="col mr-1">
|
|
<span class="button ~neutral @high supra full-width center" id="button-log-normal">Normal</span>
|
|
</label>
|
|
<label class="col mr-1">
|
|
<span class="button ~neutral @low supra full-width center" id="button-log-sanitized">Sanitized</span>
|
|
</label>
|
|
</div>
|
|
<div id="log-normal">
|
|
<pre class="monospace 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="monospace pre-line">{{ .SanitizedLog }}</pre>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script inline src="crash.js"></script>
|
|
</body>
|
|
</html>
|