mirror of
https://github.com/hrfee/jellyfin-accounts.git
synced 2024-11-13 01:40:10 +00:00
Harvey Tindall
bfbaca4094
setup.py has been removed, and Poetry is now used to package for install. This fixed an issue i had with uploading to PyPI, so one can now run 'pip install jellyfin-accounts' to install.
26 lines
1.0 KiB
HTML
26 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>Invalid Code</title>
|
|
<link rel="stylesheet" href="{{ css_href }}" integrity="{{ css_integrity }}" crossorigin="{{ css_crossorigin }}">
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
|
|
<style>
|
|
.messageBox {
|
|
margin: 20%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="messageBox">
|
|
<h1>Invalid Code.</h1>
|
|
<p>The above code is either incorrect, or has expired.</p>
|
|
<p>{{ contactMessage }}</p>
|
|
</div>
|
|
</body>
|
|
</html>
|