mirror of https://github.com/Cesura/pastey.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.2 KiB
72 lines
2.2 KiB
4 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||
|
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||
|
<title>Unauthorized | Pastey</title>
|
||
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css" />
|
||
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" />
|
||
|
<link rel="stylesheet" href="/static/css/mdb.min.css" />
|
||
|
<link rel="stylesheet" href="/static/css/style.css" />
|
||
|
|
||
|
<link rel="icon" type="image/x-icon" href="/static/img/favicon.ico"/>
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<!-- Navbar -->
|
||
|
<nav class="navbar navbar-expand-lg navbar-light bg-white fixed-top">
|
||
|
<div class="container-fluid">
|
||
|
|
||
|
<!-- Navbar logo -->
|
||
|
<a class="navbar-brand" href="/">
|
||
|
<img src="/static/img/pastey.png" height="26" alt="" loading="lazy" style="margin-top: -3px;" />
|
||
|
</a>
|
||
|
|
||
|
<div class="collapse navbar-collapse">
|
||
|
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
|
||
|
<li class="nav-item active">
|
||
|
<a class="nav-link" href="/">Home</a>
|
||
|
</li>
|
||
|
<li class="nav-item">
|
||
|
<a class="nav-link" href="/new">New Paste</a>
|
||
|
</li>
|
||
|
{% if whitelisted %}
|
||
|
<li class="nav-item">
|
||
|
<a class="nav-link" href="/config">Config</a>
|
||
|
</li>
|
||
|
{% endif %}
|
||
|
</ul>
|
||
|
|
||
|
<ul class="navbar-nav d-flex flex-row">
|
||
|
<li class="nav-item me-3 me-lg-0">
|
||
|
<a class="nav-link" href="https://github.com/Cesura/pastey" rel="nofollow" target="_blank">
|
||
|
<i class="fab fa-github"></i>
|
||
|
</a>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
</nav>
|
||
|
<!-- Navbar -->
|
||
|
|
||
|
<!-- Jumbotron -->
|
||
|
<div id="intro" class="p-5 text-center bg-light">
|
||
|
<h1 class="error">401 Unauthorized</h1>
|
||
|
</div>
|
||
|
<!-- Jumbotron -->
|
||
|
</header>
|
||
|
|
||
|
<!--Main layout-->
|
||
|
<main class="my-5">
|
||
|
<div class="container">
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</main>
|
||
|
<!--Main layout-->
|
||
|
|
||
|
<!--JS-->
|
||
|
<script type="text/javascript" src="/static/js/mdb.min.js"></script>
|
||
|
</body>
|
||
|
</html>
|