17 lines
480 B
HTML
17 lines
480 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script src="/bundle.js"></script>
|
|
<link href="css/bootstrap.min.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<button id="btn" class="btn btn-primary m-2">Send Request</button>
|
|
<table class="table table-striped">
|
|
<tbody>
|
|
<tr><th>Status</th><td id="msg"></td></tr>
|
|
<tr><th>Response</th><td id="body"></td></tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|