mini-apm-admin 0.0.0

Minimal APM for Rails - Admin web interface
Documentation
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Login - MiniAPM</title>
    <link rel="stylesheet" href="/static/style.css">
</head>
<body>
    <div class="auth-container">
        <div class="auth-card">
            <h1>MiniAPM</h1>
            <p class="auth-subtitle">Sign in to continue</p>

            {% if let Some(err) = error %}
            <div class="alert alert-error">{{ err }}</div>
            {% endif %}

            <form method="POST" action="/auth/login">
                <div class="form-group">
                    <label for="username">Username</label>
                    <input type="text" id="username" name="username" required autofocus>
                </div>
                <div class="form-group">
                    <label for="password">Password</label>
                    <input type="password" id="password" name="password" required>
                </div>
                <button type="submit" class="btn btn-primary btn-block">Sign In</button>
            </form>
        </div>
    </div>
</body>
</html>