Files
language-llm/frontend/index.html
Dennis Thiessen be366777d4
All checks were successful
Deploy FluentGerman.ai / deploy (push) Successful in 53s
added voice functionality and increased avatar size
2026-02-18 10:11:13 +01:00

40 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="FluentGerman.ai — Your personal AI-powered German language tutor">
<title>FluentGerman.ai — Login</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<div class="page-center">
<div class="card card-sm">
<div class="text-center mb-16">
<div class="logo">FluentGerman.ai</div>
<p class="subtitle">Your personal AI German tutor</p>
</div>
<form id="login-form">
<div class="form-group">
<label for="username">Username</label>
<input type="text" id="username" placeholder="Enter your username" required autofocus>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" placeholder="Enter your password" required>
</div>
<div id="login-error" class="text-sm hidden" style="color: var(--danger); margin-bottom: 12px;"></div>
<button type="submit" class="btn btn-primary btn-block">Sign In</button>
</form>
</div>
<span class="version-label">v0.2.0</span>
</div>
<script src="/js/api.js"></script>
<script src="/js/auth.js"></script>
</body>
</html>