Created
September 14, 2023 17:27
-
-
Save a-toms/e414ecba3277f38a86ba6fa44915e777 to your computer and use it in GitHub Desktop.
# sim/models.py - ## 2.4 Add your templates
This file contains hidden or 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
html | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Dashboard</title> | |
<script src="https://unpkg.com/htmx.org"></script> | |
</head> | |
<body> | |
<h1>Welcome to the Mind Upload Dashboard</h1> | |
<button hx-post="/process-task/" hx-trigger="click" hx-swap="outerHTML">Initiate Mind Upload</button> | |
<div id="task-status"> | |
<!-- We'll dynamically update this section to display the task status --> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment