FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node-solid-server/default-views/auth/login.hbs at main · nodeSolidServer/node-solid-server · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
nodeSolidServer
/
node-solid-server
Public
Notifications
You must be signed in to change notification settings
Fork
308
Star
1.8k
Code
Issues
300
Pull requests
40
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
node-solid-server
/
default-views
/
auth
/
login.hbs
Copy path
More file actions
More file actions
Latest commit
History
History
History
55 lines (49 loc) · 1.46 KB
Breadcrumbs
node-solid-server
/
default-views
/
auth
/
login.hbs
Copy path
File metadata and controls
55 lines (49 loc) · 1.46 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!
doctype
html>
<
html
lang
=
"
en
"
>
<
head
>
<
meta
charset
=
"
utf-8
"
>
<
meta
name
=
"
viewport
"
content
=
"
width=device-width, initial-scale=1
"
>
<
title
>Login</
title
>
<
link
rel
=
"
stylesheet
"
href
=
"
/common/css/bootstrap.min.css
"
>
<
link
rel
=
"
stylesheet
"
href
=
"
/common/css/solid.css
"
>
<
meta
name
=
"
apple-mobile-web-app-capable
"
content
=
"
yes
"
>
<
meta
name
=
"
apple-mobile-web-app-status-bar-style
"
content
=
"
default
"
>
</
head
>
<
body
>
<
div
class
=
"
container-fluid
"
>
<
div
class
=
"
page-header hidden-xs hidden-sm
"
>
<
h1
>Login</
h1
>
</
div
>
{{>
shared/error
}}
<
div
class
=
"
row visible-xs-inline visible-lg-block visible-md-block visible-sm-block
"
>
<
div
class
=
"
col-md-6
"
>
{{
#if
enablePassword
}}
<
h4
class
=
"
visible-xs visible-sm xs-header
"
>Login</
h4
>
{{>
auth/login-username-password
}}
{{
/if
}}
<
div
class
=
"
visible-md visible-lg
"
>
{{>
shared/create-account
}}
</
div
>
</
div
>
<
div
class
=
"
col-md-6
"
>
{{
#if
enableTls
}}
{{>
auth/login-tls
}}
{{
/if
}}
<
div
class
=
"
visible-xs visible-sm
"
>
{{>
shared/create-account
}}
</
div
>
</
div
>
</
div
>
</
div
>
<
script
>
//
Send return URL from localStorage to server through hidden redirect_uri field
var
returnToUrl
=
localStorage
.
getItem
(
'
returnToUrl
'
)
if
(returnToUrl) {
for
(
let
redirect
of
document
.
getElementsByName
(
'
redirect_uri
'
)) {
redirect
.
value
=
returnToUrl
}
}
localStorage
.
removeItem
(
'
returnToUrl
'
)
</
script
>
</
body
>
</
html
>
Back
|
FazBrowse Home
|
New Git URL