sample_app/cerebral_genai/code/rag-on-edge-cerebral/templates/login.html (24 lines of code) (raw):

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Cerebral - AI for OT Efficiency Demo</title> <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles/login.css') }}"> </head> <body> <div class="ribbon"> <img src="{{ url_for('static', filename='images/contoso_motors.png') }}" alt="Company Logo" style="height: 100px;"> </div> <div class="login-container"> <h2>Login</h2> <form action="{{ url_for('login') }}" method="post"> <label for="username">Username:</label> <input type="text" id="username" name="username" required> <label for="password">Password:</label> <input type="password" id="password" name="password" required> <button type="submit">Log in</button> </form> </div> </body> </html>