Skip to content

Instantly share code, notes, and snippets.

@msaperst
Created October 20, 2020 19:15
Show Gist options
  • Save msaperst/24d9a7d2e8f3e6ff1df26e5492a1b726 to your computer and use it in GitHub Desktop.
Save msaperst/24d9a7d2e8f3e6ff1df26e5492a1b726 to your computer and use it in GitHub Desktop.
PHP UI Test Template
<html lang="en">
<head>
<title>$PAGE_TITLE</title>
<style>
.r0 { color: green; }
.r1,.r10 { color: yellow; }
.r3 { color: orangered }
.r4,.r99 { color: red }
</style>
<script>function toggleImg(e) {
var n = e.nextSibling;
if (n.style.display === "none") {
n.style.display = "block";
} else {
n.style.display = "none";
}
}</script>
</head>
<body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment