forked from asoronow/belljar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
gui updats
1 parent
5738c23
commit ab6bcc4
Showing
2 changed files
with
59 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="stylesheet" href="../css/style.css" /> | ||
<link | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" | ||
rel="stylesheet" | ||
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" | ||
crossorigin="anonymous" | ||
/> | ||
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP --> | ||
<meta | ||
http-equiv="Content-Security-Policy" | ||
content="default-src 'self'; script-src 'self' https://cdn.jsdelivr.net/; style-src 'self' https://fonts.googleapis.com https://cdn.jsdelivr.net/; font-src 'self' https://fonts.gstatic.com;" | ||
/> | ||
<meta | ||
http-equiv="X-Content-Security-Policy" | ||
content="default-src 'self'; script-src 'self' https://cdn.jsdelivr.net/; style-src 'self' https://fonts.googleapis.com https://cdn.jsdelivr.net/; font-src 'self' https://fonts.gstatic.com;" | ||
/> | ||
<title>ImSwitch Fastapi</title> | ||
</head> | ||
<body> | ||
<div id="parent" class="container h-100"> | ||
<div class="row align-items-center"> | ||
<div class="col"> | ||
<h1>Credits</h1> | ||
<p id="version"></p> | ||
<p> | ||
<br /> | ||
Navigate to the <a href="http://localhost:8001/docs">API</a> to access the FastAPI (if ImSwitch was started already) | ||
<br /> | ||
</p> | ||
</div> | ||
</div> | ||
<div class="row align-items-center"> | ||
<div class="col d-grid"> | ||
<a role="button" class="btn btn-primary" href="./menu.html">Back</a> | ||
</div> | ||
<div class="col d-grid"> | ||
<a | ||
role="button" | ||
class="btn btn-warning" | ||
href="http://github.com/openuc2" | ||
target="_blank" | ||
>Lab Website</a | ||
> | ||
</div> | ||
</div> | ||
</div> | ||
<script | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" | ||
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" | ||
crossorigin="anonymous" | ||
></script> | ||
</body> | ||
</html> |