Skip to content

Commit 1bcd586

Browse files
committed
Update login UI branding and styles
Changed the login page title and subtitle to 'Inference-in-a-Box' and updated styling for a more branded look. Modified admin access box colors and enhanced CSS for header and login card with Tetrate Orange accents and improved background gradients.
1 parent 03fad65 commit 1bcd586

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

management/ui/src/components/Login.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,11 @@ const Login = () => {
7272
return (
7373
<div className="login-container">
7474
<div className="login-card">
75-
<h1 className="login-title">AI Model Management</h1>
76-
<p style={{ textAlign: 'center', color: '#6b7280', marginBottom: '1.5rem' }}>
75+
<h1 className="login-title" style={{ color: '#0A0D0F', fontFamily: 'Poppins, sans-serif', fontWeight: '600' }}>Inference-in-a-Box</h1>
76+
<p style={{ textAlign: 'center', color: '#0A0D0F', marginBottom: '0.5rem', fontSize: '1.125rem', fontWeight: '500' }}>
77+
Enterprise AI/ML Platform Demo
78+
</p>
79+
<p style={{ textAlign: 'center', color: '#6b7280', marginBottom: '1.5rem', fontSize: '0.875rem' }}>
7780
Choose your login method to access the management interface
7881
</p>
7982

@@ -177,7 +180,7 @@ const Login = () => {
177180
)}
178181

179182
{loginType === 'admin' && (
180-
<div style={{ marginTop: '1.5rem', padding: '1rem', backgroundColor: '#fef3c7', borderRadius: '6px' }}>
183+
<div style={{ marginTop: '1.5rem', padding: '1rem', backgroundColor: 'rgba(255, 203, 92, 0.1)', border: '1px solid #FFCB5C', borderRadius: '6px' }}>
181184
<h3 style={{ fontSize: '0.875rem', fontWeight: '600', marginBottom: '0.5rem' }}>
182185
Admin Access Features:
183186
</h3>

management/ui/src/index.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ code {
5050
}
5151

5252
.header {
53-
background: #0A0D0F; /* Tetrate Black for clean professional look */
53+
background: linear-gradient(135deg, #FF5500 0%, #E64D00 100%); /* Tetrate Orange gradient */
5454
color: #FFFFFF; /* Tetrate White */
5555
padding: 1rem 2rem;
5656
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
@@ -420,12 +420,13 @@ code {
420420
display: flex;
421421
justify-content: center;
422422
align-items: center;
423-
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
423+
background: linear-gradient(135deg, #F5F5F5 0%, #E5E7EB 100%);
424424
}
425425

426426
.login-card {
427427
background: white;
428428
border-radius: 8px;
429+
border-top: 4px solid #FF5500; /* Tetrate Orange accent */
429430
padding: 2rem;
430431
width: 100%;
431432
max-width: 400px;

0 commit comments

Comments
 (0)