Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created October 27, 2019 01:31
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save IntegerMan/28cad932e91171659f35a13b84d6fbc3 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Migrating to TypeScript Example</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="Logic.js"></script>
<link rel="stylesheet" href="bootstrap.min.css">
</head>
<body>
<div class="container">
<a href="https://www.KillAllDefects.com" target="_blank" title="Visit Kill All Defects Website">
<img src="KillAllDefects.png" width="312" height="91" alt="Kill All Defects Logo" />
</a>
<div class="jumbotron">
<h1>Test Manager</h1>
<div>Add a test case below, then click to indicate if it is passing or failing.</div>
</div>
<div class="input-group mb-3">
<input type="text" class="form-control" id="txtTestName" placeholder="Enter test case name" aria-label="Test Case Name" aria-describedby="button-add">
<div class="input-group-append">
<button class="btn btn-primary" type="button" id="button-add" onclick="addTestCase()">Add</button>
</div>
</div>
<div>
<h2>Test Cases</h2>
<div id="lblNoTestCases" class="text-muted">There are no test cases. Click add test case above to get started.</div>
<div id="listTestCases" class="list-group"></div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment