Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Style auth0 test login post-login page [CLI-126] #247

Merged
merged 3 commits into from
Apr 14, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
111 changes: 109 additions & 2 deletions internal/auth/authutil/browser.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,13 @@ func WaitForBrowserCallback(addr string) (code string, state string, err error)
}

if cb.code == "" {
_, _ = w.Write([]byte("<p>&#10060; Unable to extract code from request, please try authenticating again.</p>"))
_, _ = w.Write([]byte(resultPage("Login Failed",
"Unable to extract code from request, please try authenticating again.",
"error-denied")))
} else {
_, _ = w.Write([]byte("<p>&#128075; You can close the window and go back to the CLI to see the user info and tokens.</p>"))
_, _ = w.Write([]byte(resultPage("Login Successful",
"You can close the window and go back to the CLI to see the user info and tokens.",
"success-lock")))
}

cbCh <- cb
Expand All @@ -62,3 +66,106 @@ func WaitForBrowserCallback(addr string) (code string, state string, err error)
return "", "", err
}
}

func resultPage(title string, message string, iconClass string) string {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Ideally, we'd want this in an embedded HTML file, but for the time being (with the Friday launch near) this can do.

html := `
<!DOCTYPE html>
<html>
<head>
<title>Auth0 CLI</title>
<link rel="shortcut icon" href="https://cdn.auth0.com/website/new-homepage/dark-favicon.png" id="favicon"/>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://cdn.auth0.com/ulp/react-components/1.46.14/css/main.cdn.min.css" />
<style id="custom-styles-container">
body {
background: #F0F1F3;
font-family: ulp-font, -apple-system, BlinkMacSystemFont, Roboto, Helvetica, sans-serif;
}
.caf10cc70 {
background: #F0F1F3;
}
.c404c83d8.c302c4ba1 {
background: #D00E17;
}
.c404c83d8.ccbc147ad {
background: #0A8852;
}
.c9ade4631 {
background-color: #635DFF;
color: #ffffff;
}
.c9ade4631 a,
.c9ade4631 a:visited {
color: #ffffff;
}
.c87085aeb {
background-color: #0A8852;
}
.c8a6debc4 {
background-color: #D00E17;
}
.input.c911ad6ee {
border-color: #D00E17;
}
.error-cloud {
background-color: #D00E17;
}
.error-fatal {
background-color: #D00E17;
}
.error-local {
background-color: #D00E17;
}
.c03b79ab4.c41a3276a {
background-color: #D00E17;
border-color: #D00E17;
}
.c03b79ab4.c41a3276a::before {
border-bottom-color: #D00E17;
}
.c03b79ab4.c41a3276a::after {
border-bottom-color: #D00E17;
}
#alert-trigger {
background-color: #D00E17;
}
</style>
<style>
/* By default, hide features for javascript-disabled browsing */
/* We use !important to override any css with higher specificity */
/* It is also overriden by the styles in <noscript> in the header file */
.no-js { display: none !important; }
</style>
<noscript>
<style>
/* We use !important to override the default for js enabled */
/* If the display should be other than block, it should be defined specifically here */
.js-required { display: none !important; }
.no-js { display: block !important; }
</style>
</noscript>
<style>.__s16nu9 {display:none;}</style>
</head>
<body class="_widget-auto-layout">
<main class="_widget c58fd7e0a">
<section class="cb38f2048 _prompt-box-outer ced5b89f0 c471522a0">
<div class="ce794cbce c66a01acc">
<div class="c507241b0 c0fc42669 ca8df1f97" data-event-id="">
<div class="c598bf061 cc89f09a3">
<span class="c05afb577 %s"></span>
</div>
<section class="c780c82ff c15e7affd">
<h1 class="cd9c1d686 c67d39740 c0c89e88e">%s</h1>
<div class="c6db31a88 c1728f1a3 cb059f28c">%s</div>
</section>
</div>
</div>
</section>
</main>
</body>
</html>`

return fmt.Sprintf(html, iconClass, title, message)
}
2 changes: 1 addition & 1 deletion internal/display/display.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func (r *Renderer) Heading(text ...string) {
}

func (r *Renderer) EmptyState(resource string) {
fmt.Fprintf(r.MessageWriter, "No %s available.\n", resource)
fmt.Fprintf(r.MessageWriter, "No %s available.\n\n", resource)
}

type View interface {
Expand Down