Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dex
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
dex
Commits
3eb528f9
Unverified
Commit
3eb528f9
authored
Nov 15, 2017
by
Eric Chiang
Committed by
GitHub
Nov 15, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1129 from ericchiang/cherry-pick-1123
cherry-pick: show "back" link for password connectors
parents
49d3c0ea
dd677540
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
4 deletions
+15
-4
handlers.go
server/handlers.go
+3
-2
templates.go
server/templates.go
+3
-2
password.html
web/templates/password.html
+5
-0
styles.css
web/themes/coreos/styles.css
+4
-0
No files found.
server/handlers.go
View file @
3eb528f9
...
...
@@ -223,6 +223,7 @@ func (s *Server) handleConnectorLogin(w http.ResponseWriter, r *http.Request) {
return
}
scopes
:=
parseScopes
(
authReq
.
Scopes
)
showBacklink
:=
len
(
s
.
connectors
)
>
1
switch
r
.
Method
{
case
"GET"
:
...
...
@@ -250,7 +251,7 @@ func (s *Server) handleConnectorLogin(w http.ResponseWriter, r *http.Request) {
}
http
.
Redirect
(
w
,
r
,
callbackURL
,
http
.
StatusFound
)
case
connector
.
PasswordConnector
:
if
err
:=
s
.
templates
.
password
(
w
,
r
.
URL
.
String
(),
""
,
usernamePrompt
(
conn
),
false
);
err
!=
nil
{
if
err
:=
s
.
templates
.
password
(
w
,
r
.
URL
.
String
(),
""
,
usernamePrompt
(
conn
),
false
,
showBacklink
);
err
!=
nil
{
s
.
logger
.
Errorf
(
"Server template error: %v"
,
err
)
}
case
connector
.
SAMLConnector
:
...
...
@@ -298,7 +299,7 @@ func (s *Server) handleConnectorLogin(w http.ResponseWriter, r *http.Request) {
return
}
if
!
ok
{
if
err
:=
s
.
templates
.
password
(
w
,
r
.
URL
.
String
(),
username
,
usernamePrompt
(
passwordConnector
),
true
);
err
!=
nil
{
if
err
:=
s
.
templates
.
password
(
w
,
r
.
URL
.
String
(),
username
,
usernamePrompt
(
passwordConnector
),
true
,
showBacklink
);
err
!=
nil
{
s
.
logger
.
Errorf
(
"Server template error: %v"
,
err
)
}
return
...
...
server/templates.go
View file @
3eb528f9
...
...
@@ -190,13 +190,14 @@ func (t *templates) login(w http.ResponseWriter, connectors []connectorInfo) err
return
renderTemplate
(
w
,
t
.
loginTmpl
,
data
)
}
func
(
t
*
templates
)
password
(
w
http
.
ResponseWriter
,
postURL
,
lastUsername
,
usernamePrompt
string
,
lastWasInvalid
bool
)
error
{
func
(
t
*
templates
)
password
(
w
http
.
ResponseWriter
,
postURL
,
lastUsername
,
usernamePrompt
string
,
lastWasInvalid
,
showBacklink
bool
)
error
{
data
:=
struct
{
PostURL
string
BackLink
bool
Username
string
UsernamePrompt
string
Invalid
bool
}{
postURL
,
lastUsername
,
usernamePrompt
,
lastWasInvalid
}
}{
postURL
,
showBacklink
,
lastUsername
,
usernamePrompt
,
lastWasInvalid
}
return
renderTemplate
(
w
,
t
.
passwordTmpl
,
data
)
}
...
...
web/templates/password.html
View file @
3eb528f9
...
...
@@ -25,6 +25,11 @@
<button
tabindex=
"3"
id=
"submit-login"
type=
"submit"
class=
"dex-btn theme-btn--primary"
>
Login
</button>
</form>
{{ if .BackLink }}
<div
class=
"theme-link-back"
>
<a
class=
"dex-subtle-text"
href=
"javascript:history.back()"
>
Select another login method.
</a>
</div>
{{ end }}
</div>
{{ template "footer.html" . }}
web/themes/coreos/styles.css
View file @
3eb528f9
...
...
@@ -107,3 +107,7 @@
text-align
:
left
;
width
:
250px
;
}
.theme-link-back
{
margin-top
:
4px
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment