10 lines
310 B
HTML
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 %} |