wow
This commit is contained in:
commit
794dce869c
16 changed files with 5430 additions and 0 deletions
22
templates/pass.html
Normal file
22
templates/pass.html
Normal 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>
|
||||
Loading…
Reference in a new issue