Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
44b2184
Added live-demo CSS styles
Jul 25, 2022
22716be
Updated textile content w. PNG, CSS and "Next steps"
Jul 25, 2022
726d751
Update the textile with ES5 changes adding user input for clientId
Jul 25, 2022
aac269b
Upgrade image to retina resolution
Jul 25, 2022
5795613
Fix numbering sequence
Jul 25, 2022
7744080
Update last modified date
Jul 25, 2022
2d9b0de
Front matter fixing
Jul 26, 2022
fe5374f
Update content/tutorials/jwt-authentication.textile
fliptopbox Jul 28, 2022
1f467e6
Update content/tutorials/jwt-authentication.textile
fliptopbox Jul 28, 2022
873cd98
Update content/tutorials/jwt-authentication.textile
fliptopbox Jul 28, 2022
3706bbc
Update content/tutorials/jwt-authentication.textile
fliptopbox Jul 28, 2022
a6df801
Update content/tutorials/jwt-authentication.textile
fliptopbox Jul 28, 2022
d7af339
Update content/tutorials/jwt-authentication.textile
fliptopbox Jul 28, 2022
11556ce
Code review changes
Jul 28, 2022
1b7d463
Code review update (missed)
Jul 28, 2022
4b1ab70
Update content/tutorials/jwt-authentication.textile
fliptopbox Jul 29, 2022
d9d06b6
Update content/tutorials/jwt-authentication.textile
fliptopbox Jul 29, 2022
21a4a81
Update content/tutorials/jwt-authentication.textile
fliptopbox Jul 29, 2022
22b182d
Update content/tutorials/jwt-authentication.textile
fliptopbox Jul 29, 2022
a635798
Fix typos and extended console log messages to UI
Jul 29, 2022
519d090
fix grammar
Jul 29, 2022
e7801bb
added link to JWT spec
Jul 29, 2022
9fe2b4a
Update content/tutorials/jwt-authentication.textile
fliptopbox Jul 29, 2022
60b7ca9
Corrected last_update month and day
Aug 2, 2022
c66f9d3
Fix malformed textile link
Aug 4, 2022
d86f1be
Restore the alert box message
Aug 4, 2022
8922af2
Add branch checkout step
Aug 4, 2022
ce4a00c
Update URLs to soure code and formating errors
Aug 4, 2022
c359828
Fix typos
Aug 8, 2022
35bf90c
Delete redundant sentence
Aug 8, 2022
afad156
Review amends
fliptopbox Aug 10, 2022
52dde6f
Fix incorrect repo URL
fliptopbox Aug 10, 2022
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
Binary file modified app/assets/images/tutorials/jwt-auth/jwt-auth-output.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions app/assets/stylesheets/live-demo.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/* styles for live demo container */

.live-demo-container {
background: #efefef;
padding: 2rem;
margin: 0 0 2rem 0;

input {
border: 1px solid;
padding: 0.7rem 1rem;
margin-bottom: 0.15rem;
display: block;
width: 50%;
border-radius: 3px;
}

button {
border: 1px solid;
padding: 1rem 1rem;
background: black;
color: white;
padding: 10px 30px;
display: block;
border-radius: 5px;
margin: 0.5rem 0 2rem 0;
font-weight: 700;
}

button:hover {
background: #ff5416;
}

textarea {
padding: 0;
margin: 0;
width: 100%;
font-family: monospace;
background-color: #232323;
color: #00ff33;
line-height: 1.5;
display: block;
border: none;
}

label {
color: black;
display: block;
margin: 0.5rem 0;
font-weight: 700;
}
}

.live-demo-response {
padding: 1rem;
margin: 0;
background-color: #232323;
border-radius: 3px;
}
3 changes: 2 additions & 1 deletion app/assets/stylesheets/stylesheet.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
@import "minimizable";
@import "flashbox";
@import "sidebar";
@import 'redoc';
@import "redoc";
@import "live-demo";
Loading