Lots of good progress getting it setup. Need to figure out templating, easier calling of functions, and cleaner routing.

This commit is contained in:
Norm Rasmussen
2023-02-17 16:59:42 -05:00
commit 1bcbef6220
19 changed files with 545 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>Northpass CSM Bulk Actions</title>
</head>
<body>
<header class="topnav">
<div class="logo_container">
<img src="/static/NP-Logo-Primary-FC.png" alt="Northpass Full Color Logo"></img>
</div>
</header>
<h1>Hello! Please select what you'd like to do.</h1>
<form action="{{ url_for("get_courses")}}" method="post">
<label for="apikey">API Key:</label>
<input type="text" id="api" name="apikey"/>
<button type="submit">Submit</button>
</form>
</div>
</body>
</html>