Add initial HTML structure for login page - #2
Merged
Merged
Conversation
Signed-off-by: marblom007 <158522975+marblom007@users.noreply.github.com>
miacycle
approved these changes
May 25, 2026
Contributor
There was a problem hiding this comment.
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 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 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 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; | ||
| } |
| Access to this Meshery remote provider is strictly limited to Intel-internal networks only. Authentication is currently disabled. | ||
| </div> | ||
|
|
||
| <form onsubmit="event.preventDefault();"> |
| <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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.