v2.1-enterprise

This commit is contained in:
2026-03-23 19:32:57 +01:00
parent b1500e5d87
commit 988a8b143f
35 changed files with 1304 additions and 0 deletions
@@ -0,0 +1,19 @@
{% extends 'base.html' %}
{% block title %}Login{% endblock %}
{% block body_class %}login-page{% endblock %}
{% block content %}
<div class="login-wrap">
<div class="login-card">
<img class="login-logo" src="{{ url_for('static', filename='logo.png') }}" alt="logo">
<h1>Log ind</h1>
<p class="muted">Enterprise RTMP control platform</p>
<form method="post" class="form-grid">
<label>Brugernavn<input type="text" name="username" required></label>
<label>Kodeord<input type="password" name="password" required></label>
<button type="submit">Log ind</button>
</form>
<div class="login-links"><a href="{{ url_for('main.forgot_password') }}">Glemt kodeord?</a></div>
</div>
</div>
{% endblock %}