File tree Expand file tree Collapse file tree 7 files changed +25
-6
lines changed
packages/toolkit/src/auth/ui/vue Expand file tree Collapse file tree 7 files changed +25
-6
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "type" : " Feature" ,
3
+ "description" : " UI: Improve text description in login page"
4
+ }
Original file line number Diff line number Diff line change @@ -170,7 +170,9 @@ abstract class BaseBuilderIdState implements AuthForm {
170
170
*/
171
171
async getSubmitButtonText(): Promise <string > {
172
172
if (! (await this .anyBuilderIdConnected ())) {
173
- return ' Use for free with AWS Builder ID'
173
+ return this .name === ' CodeWhisperer'
174
+ ? ' Use for free, no AWS Account required'
175
+ : ' Use for free with AWS Builder ID'
174
176
} else {
175
177
return ` Connect AWS Builder ID with ${this .name } `
176
178
}
Original file line number Diff line number Diff line change @@ -150,7 +150,8 @@ export default defineComponent({
150
150
if (this .isConnected && ! this .checkIfConnected ) {
151
151
this .buttonText = ' Add an IAM Identity Center profile'
152
152
} else {
153
- this .buttonText = ' Sign in with IAM Identity Center (SSO)'
153
+ this .buttonText =
154
+ this .authName === ' CodeWhisperer' ? ' Use Professional License' : ' Use Single Sign-on (SSO)'
154
155
}
155
156
},
156
157
async emitUpdate(cause ? : ConnectionUpdateCause ) {
Original file line number Diff line number Diff line change 19
19
flex-direction : column;
20
20
}
21
21
22
+ .auth-container-section button {
23
+ font-size : 1.3rem ;
24
+ }
25
+
26
+ .auth-container > div > button {
27
+ font-size : 1.3rem ;
28
+ }
29
+
22
30
.auth-form-container {
23
31
display : flex;
24
32
flex-direction : column;
Original file line number Diff line number Diff line change 1
1
<template >
2
2
<div :id =" panelId" class =" feature-panel-container border-common" :class =" isActive ? 'feature-panel-selected' : ''" >
3
3
<div class =" feature-panel-container-upper" >
4
- <div class =" feature-panel-container-title" >AWS Explorer</div >
4
+ <div class =" feature-panel-container-title" >Resource Explorer</div >
5
5
6
6
<img
7
7
class =" feature-panel-image"
Original file line number Diff line number Diff line change 35
35
></IdentityCenterForm >
36
36
37
37
<button v-if =" connectedAuth" v-on:click =" showCodeCatalystNode()" >Open CodeCatalyst in Toolkit</button >
38
+ <div v-if =" !connectedAuth" >
39
+ Don't have a CodeCatalyst account?
40
+ <a href =" https://codecatalyst.aws/onboarding/view" >Get started with creating a Space.</a >
41
+ </div >
38
42
</div >
39
43
</template >
40
44
</div >
Original file line number Diff line number Diff line change 46
46
</svg >
47
47
</div >
48
48
<div >
49
- <div style =" font-size : 1.8 rem ; font-weight : bold " >AWS Toolkit for VS Code</div >
50
- <div style =" font-size : 1rem ; font-weight : bold " >
49
+ <div style =" font-size : 1.4 rem " >AWS Toolkit for VS Code</div >
50
+ <div style =" font-size : 1rem " >
51
51
<a href =" https://docs.aws.amazon.com/toolkit-for-vscode/latest/userguide/welcome.html"
52
52
>Documentation</a
53
53
>
75
75
</div >
76
76
</div >
77
77
<div >
78
- <div style =" font-size : 1.6 rem ; font-weight : bold " >Sign in to Get Started </div >
78
+ <div style =" font-size : 2.1 rem ; font-weight : bold " >Select a sign- in option to continue: </div >
79
79
<hr style =" margin : 1em 0 1em 0 ; border-color : var (--vscode-textBlockQuote-border )" />
80
80
<div style =" display : flex ; flex-direction : row ; justify-content : space-between ; gap : 1em " >
81
81
<CodeWhispererContent
You can’t perform that action at this time.
0 commit comments