bellflower/templates/index.html
2025-07-13 14:18:59 -04:00

10 lines
310 B
HTML

{% extends "base.html" %}
{% set title = "Visitor Check-in System" %}
{% block content %}
<h1>Welcome to Visitor Check-in System</h1>
<p>Visitors are currently {{ status }}</p>
<form action="/checkin" method="post">
<input type="submit" value="Check In Visitor">
</form>
{% endblock %}