Masahiko AMANO 830e411d92 docs: add reference Python/Flask implementation
Previous version of Tanabata used as visual and functional reference
for the new Go + SvelteKit rewrite.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-03 18:36:05 +03:00

26 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{% include 'head.html' %}
<title>Welcome to Tanabata File Manager!</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/auth.css') }}">
</head>
<body data-bs-theme="dark">
<img src="{{ url_for('static', filename='images/tanabata-left.png') }}" alt="" class="decoration left">
<img src="{{ url_for('static', filename='images/tanabata-right.png') }}" alt="" class="decoration right">
<form id="auth">
<h1>Welcome to Tanabata File Manager!</h1>
<div class="form-group">
<input type="text" class="form-control form-control-lg" id="username" name="username" placeholder="Username..." required>
</div>
<div class="form-group">
<input type="password" class="form-control form-control-lg" id="password" name="password" placeholder="Password..." required>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary" id="login">Log in</button>
</div>
</form>
<script src="{{ url_for('static', filename='js/auth.js') }}"></script>
</body>
</html>