-
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 branch information
1 parent
ece4eea
commit 06520ac
Showing
2 changed files
with
33 additions
and
5 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 |
---|---|---|
@@ -1,7 +1,34 @@ | ||
<script> | ||
import FullPageLayout from "$lib/FullPageLayout.svelte"; | ||
import HeaderBar from "$lib/HeaderBar.svelte"; | ||
</script> | ||
|
||
<FullPageLayout> | ||
<iframe src="http://192.168.1.2:8080/" title="vision system"></iframe> | ||
</FullPageLayout> | ||
<style> | ||
button { | ||
border: 1px solid black; | ||
border-radius: 20px; | ||
background-color: #FFD200; | ||
color: black; | ||
font-size: 20px; | ||
padding: 20px 30px; | ||
cursor: pointer; | ||
text-decoration: underline; | ||
} | ||
</style> | ||
|
||
|
||
<div class="main_content"> | ||
<HeaderBar></HeaderBar> | ||
<slot> | ||
<div class="text"> | ||
The Vision System can be accessed when you connect to the Vision System wifi network. If you are on eduroam the below | ||
link will not work. The wifi network is something like "VisionSystem-1120" | ||
<div style="display: flex; justify-content: center; padding-top: 30px"> | ||
<a href="http://192.168.1.2:8080/"> | ||
<button>Go to the Vision System</button> | ||
</a> | ||
</div> | ||
</div> | ||
</slot> | ||
</div> | ||
<!-- <iframe src="http://192.168.1.2:8080/" title="vision system"></iframe>--> | ||
|