This commit is contained in:
암냥 2026-09-01 23:59:23 +09:00
commit 794dce869c
16 changed files with 5430 additions and 0 deletions

22
templates/pass.html Normal file
View file

@ -0,0 +1,22 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ pass_data.holder }} · PassPort</title>
<link rel="stylesheet" href="{{ url_for('static', filename='dist/pass-app.css') }}">
<script type="module" src="{{ url_for('static', filename='dist/pass-app.js') }}"></script>
</head>
<body>
<div
id="pass-root"
data-holder="{{ pass_data.holder }}"
data-location="{{ pass_data.location }}"
data-status="{{ status }}"
data-status-class="{{ status_class }}"
data-valid-from="{{ valid_from }}"
data-valid-until="{{ valid_until }}"
data-credential-id="{{ credential_id }}"
></div>
</body>
</html>