2021-10-18 10:14:59 +00:00
|
|
|
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>TA | Welcome</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'css/style.css' %}">
|
2021-12-17 16:00:30 +00:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'favicon/apple-touch-icon.png' %}">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{% static 'favicon/favicon-32x32.png' %}">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{% static 'favicon/favicon-16x16.png' %}">
|
|
|
|
<link rel="manifest" href="{% static 'favicon/site.webmanifest' %}">
|
|
|
|
<link rel="mask-icon" href="{% static 'favicon/safari-pinned-tab.svg' %}" color="#01202e">
|
|
|
|
<link rel="shortcut icon" href="{% static 'favicon/favicon.ico' %}">
|
|
|
|
<meta name="apple-mobile-web-app-title" content="TubeArchivist">
|
|
|
|
<meta name="application-name" content="TubeArchivist">
|
|
|
|
<meta name="msapplication-TileColor" content="#01202e">
|
|
|
|
<meta name="msapplication-config" content="{% static 'favicon/browserconfig.xml' %}">
|
|
|
|
<meta name="theme-color" content="#01202e">
|
2021-10-18 10:14:59 +00:00
|
|
|
{% if colors == "dark" %}
|
|
|
|
<link rel="stylesheet" href="{% static 'css/dark.css' %}">
|
|
|
|
{% else %}
|
|
|
|
<link rel="stylesheet" href="{% static 'css/light.css' %}">
|
|
|
|
{% endif %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="boxed-content login-page">
|
|
|
|
{% if colors == 'dark' %}
|
|
|
|
<img src="{% static 'img/logo-tube-archivist-dark.png' %}" alt="tube-archivist-logo">
|
|
|
|
{% endif %}
|
|
|
|
{% if colors == 'light' %}
|
|
|
|
<img src="{% static 'img/logo-tube-archivist-light.png' %}" alt="tube-archivist-banner">
|
|
|
|
{% endif %}
|
|
|
|
<h1>Tube Archivist</h1>
|
|
|
|
<h2>Your Self Hosted YouTube Media Server</h2>
|
2021-10-24 08:34:00 +00:00
|
|
|
{% if form_error %}
|
|
|
|
<p class="danger-zone">Failed to login.</p>
|
|
|
|
{% endif %}
|
2021-10-18 10:14:59 +00:00
|
|
|
<form action="/login/" method="POST" name="login">
|
|
|
|
{% csrf_token %}
|
2021-12-16 08:17:58 +00:00
|
|
|
{{ form.username }}<br>
|
|
|
|
{{ form.password }}<br>
|
|
|
|
<p>Remember me: {{ form.remember_me }}</p>
|
2021-10-22 05:01:30 +00:00
|
|
|
<input type="hidden" name="next" value="{{ request.GET.next }}" />
|
2021-10-18 10:14:59 +00:00
|
|
|
<button type="submit">Login</button>
|
|
|
|
</form>
|
2022-04-15 15:35:13 +00:00
|
|
|
<p class="login-links"><span><a href="https://github.com/tubearchivist/tubearchivist" target="_blank">Github</a></span> <span><a href="https://github.com/tubearchivist/tubearchivist#donate" target="_blank">Donate</a></span></p>
|
2021-10-18 10:14:59 +00:00
|
|
|
</div>
|
|
|
|
<div class="footer-colors">
|
|
|
|
<div class="col-1"></div>
|
|
|
|
<div class="col-2"></div>
|
|
|
|
<div class="col-3"></div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|