Skip to content

Add initial HTML structure for login page - #2

Merged
miacycle merged 1 commit into
masterfrom
marblom007-patch-1
May 25, 2026
Merged

miacycle merged 1 commit into
masterfrom
marblom007-patch-1

Conversation

@marblom007

Copy link
Copy Markdown
Contributor

No description provided.

Signed-off-by: marblom007 <158522975+marblom007@users.noreply.github.com>
Copilot AI review requested due to automatic review settings May 25, 2026 15:54
@miacycle
miacycle merged commit 55e1fc1 into master May 25, 2026
1 check failed
@miacycle
miacycle deleted the marblom007-patch-1 branch May 25, 2026 15:56

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a first-pass static login page for the Meshery Remote Provider, including Intel-branded layout, disabled form controls, and an “access restricted/auth disabled” notice.

Changes:

  • Introduces a full HTML document for the login page (structure + inline styling).
  • Adds disabled username/password fields and a disabled “Sign In” button.
  • Displays an access restriction warning message to set expectations for internal-only use.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread index.html
Comment on lines +133 to +134
<div class="login-container">
<img src="https://upload.wikimedia.org/wikipedia/commons/8/85/Intel_logo_2022.svg" alt="Intel Logo" class="logo">
Comment thread index.html
Comment on lines +97 to +113
.form-group input {
width: 100%;
padding: 12px;
border: 1px solid var(--disabled-border);
border-radius: 4px;
box-sizing: border-box;
background-color: var(--disabled-bg);
color: var(--disabled-text);
font-size: 0.95rem;
cursor: not-allowed;
transition: all 0.2s ease;
}

.form-group input::placeholder {
color: var(--disabled-text);
opacity: 0.7;
}
Comment thread index.html
Comment on lines +115 to +128
button {
width: 100%;
padding: 12px;
background-color: var(--intel-blue);
color: white;
border: none;
border-radius: 4px;
font-size: 1rem;
font-weight: 600;
opacity: 0.5;
cursor: not-allowed;
margin-top: 10px;
transition: opacity 0.2s ease;
}
Comment thread index.html
Access to this Meshery remote provider is strictly limited to Intel-internal networks only. Authentication is currently disabled.
</div>

<form onsubmit="event.preventDefault();">
Comment thread index.html
<form onsubmit="event.preventDefault();">
<div class="form-group">
<label for="username">Corporate Email</label>
<input type="text" id="username" name="username" placeholder="user@intel.com" disabled>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants