mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
add message to ui for cloud customers for windows auto enrollment (#23481)
relates to #21633 This adds an info banner for cloud customers to help them with their Windows autoenrollment setup.  - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. - [x] Manual QA for all new/changed functionality
This commit is contained in:
parent
a2468fa0b4
commit
53dc33d7d6
4 changed files with 37 additions and 9 deletions
1
changes/21633-windows-auto-enrollment-info-banner
Normal file
1
changes/21633-windows-auto-enrollment-info-banner
Normal file
|
|
@ -0,0 +1 @@
|
|||
- add info banner for cloud customers to help with their windows autoenrollment setup
|
||||
|
|
@ -33,7 +33,7 @@ const InfoBanner = ({
|
|||
closable,
|
||||
link,
|
||||
icon,
|
||||
}: IInfoBannerProps): JSX.Element => {
|
||||
}: IInfoBannerProps) => {
|
||||
const wrapperClasses = classNames(
|
||||
baseClass,
|
||||
`${baseClass}__${color}`,
|
||||
|
|
|
|||
|
|
@ -8,6 +8,8 @@ import InputField from "components/forms/fields/InputField";
|
|||
import BackLink from "components/BackLink";
|
||||
import MainContent from "components/MainContent";
|
||||
import CustomLink from "components/CustomLink/CustomLink";
|
||||
import InfoBanner from "components/InfoBanner";
|
||||
import Icon from "components/Icon";
|
||||
|
||||
const generateMdmTermsOfUseUrl = (domain: string) => {
|
||||
return `${domain}/api/mdm/microsoft/tos`;
|
||||
|
|
@ -31,7 +33,7 @@ const WindowsAutomaticEnrollmentPage = () => {
|
|||
className={`${baseClass}__back-to-automatic-enrollment`}
|
||||
/>
|
||||
<h1>Azure Active Directory</h1>
|
||||
<p>
|
||||
<p className={`${baseClass}__description`}>
|
||||
The end user will see Microsoft's default initial setup. You can
|
||||
further simplify the initial device setup with Autopilot, which is
|
||||
similar to Apple's Automated Device Enrollment (DEP).{" "}
|
||||
|
|
@ -64,10 +66,25 @@ const WindowsAutomaticEnrollmentPage = () => {
|
|||
</li>
|
||||
<li>
|
||||
<span>3.</span>
|
||||
<p>
|
||||
Use the information presented in Azure AD to create a new TXT/MX
|
||||
record with your domain registrar, then select <b>Verify</b>.
|
||||
</p>
|
||||
<div>
|
||||
<p>
|
||||
Use the information presented in Azure AD to create a new TXT/MX
|
||||
record with your domain registrar, then select <b>Verify</b>.
|
||||
</p>
|
||||
<InfoBanner
|
||||
className={`${baseClass}__cloud-customer-banner`}
|
||||
color="purple"
|
||||
icon="warning"
|
||||
>
|
||||
<div className={`${baseClass}__banner-content`}>
|
||||
<Icon name="error-outline" color="core-fleet-blue" />
|
||||
<p>
|
||||
If you're a managed-cloud customer, please reach out to
|
||||
Fleet to create a TXT/MX record for you.
|
||||
</p>
|
||||
</div>
|
||||
</InfoBanner>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<span>4.</span>
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@
|
|||
font-size: $x-large;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: $x-small;
|
||||
&__description {
|
||||
margin: 0 0 $pad-large;
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
&__setup-list {
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
gap: $pad-large;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
max-width: 660px;
|
||||
max-width: 800px;
|
||||
list-style: none;
|
||||
|
||||
li {
|
||||
|
|
@ -52,4 +52,14 @@
|
|||
flex-direction: column;
|
||||
gap: $pad-medium;
|
||||
}
|
||||
|
||||
&__cloud-customer-banner {
|
||||
margin-top: $pad-large;
|
||||
}
|
||||
|
||||
&__banner-content {
|
||||
display: flex;
|
||||
align-items: column;
|
||||
gap: $pad-small;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue