Some more stuff sort of working, started slideshow stuff

This commit is contained in:
2025-11-09 21:28:10 -05:00
parent d332aca22e
commit 91a973dde2
9 changed files with 175 additions and 2 deletions

View File

@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html>
<head>
<title>Video Commander</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" type="text/css" href="../static/style.css">
</head>
<body>
<div class="container">
<h1 class="text-center">Configure a Remote Stream</h1>
<hr>
<div class="alert alert-info text-center" role="alert">
Configure a stream, content that is played from a location on the local network or the Internet.
</div>
<form action="/configure/stream" method="POST">
<div class="form-group">
<label for="buttonName">Button Name</label>
<input type="text" class="form-control" name="buttonName" id="buttonName" />
</div>
<div class="form-group">
<label for="streamURL">Stream URL</label>
<input type="text" class="form-control" name="streamURL" id="streamURL" />
</div>
<div class="form-check form-switch form-check-input-lg">
<input type="checkbox" class="form-check-input" name="fullScreen" id="fullScreen" checked/>
<label for="fullScreen" class="form-check-label">Play the stream in Full Screen?</label>
</div>
<button id="submit" class="btn btn-primary form-control" type="submit">Submit</button>
</form>
</div>
</body>
</html>