Skip to content

Commit

Permalink
Merge pull request #97 from mastertinner/fix-auth-forward-pages
Browse files Browse the repository at this point in the history
fix html in templates
  • Loading branch information
ekryski authored and daffl committed Aug 29, 2018
1 parent c959984 commit ef5f31a
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 96 deletions.
97 changes: 49 additions & 48 deletions packages/authentication/src/public/auth-fail.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,64 +2,65 @@
<html>
<head lang="en">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Feathers Authentication Failure</title>
<style>
* {
margin: 0;
padding: 0;
box-sixing: border-box;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html, body {
font-family: 'Helvetica Neue', 'Helevetica', 'Arial', 'sans-serif';
font-weight: 400;
font-size: 16px;
}
html, body {
font-family: 'Helvetica Neue', 'Helevetica', 'Arial', 'sans-serif';
font-weight: 400;
font-size: 16px;
}

main {
padding: 100px 20px;
}
main {
padding: 100px 20px;
}

img.logo {
position: absolute;
top: 20px;
left: 20px;
display: block;
width: 180px;
}
img.logo {
position: absolute;
top: 20px;
left: 20px;
display: block;
width: 180px;
}

h1 {
font-weight: 100;
font-size: 4em;
margin-bottom: 10px;
}
h1 {
font-weight: 100;
font-size: 4em;
margin-bottom: 10px;
}

h3 {
font-size: 1.4em;
font-weight: 300;
margin-bottom: 10px;
}
h3 {
font-size: 1.4em;
font-weight: 300;
margin-bottom: 10px;
}

pre {
min-height: 100px;
border: 1px solid #EEE;
border-radius: 5px;
color: #555;
background: #f5f5f5;
padding: 10px;
overflow: hidden;
overflow-wrap: break-word;
word-wrap: break-word;
}
pre {
min-height: 100px;
border: 1px solid #EEE;
border-radius: 5px;
color: #555;
background: #f5f5f5;
padding: 10px;
overflow: hidden;
overflow-wrap: break-word;
word-wrap: break-word;
}

.center-text {
text-align: center;
}
.center-text {
text-align: center;
}

.italic {
font-style: italic;
}
</style>
.italic {
font-style: italic;
}
</style>
</head>
<body>
Expand Down
97 changes: 49 additions & 48 deletions packages/authentication/src/public/auth-success.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,64 +2,65 @@
<html>
<head lang="en">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Feathers Authentication Success</title>
<style>
* {
margin: 0;
padding: 0;
box-sixing: border-box;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html, body {
font-family: 'Helvetica Neue', 'Helevetica', 'Arial', 'sans-serif';
font-weight: 400;
font-size: 16px;
}
html, body {
font-family: 'Helvetica Neue', 'Helevetica', 'Arial', 'sans-serif';
font-weight: 400;
font-size: 16px;
}

main {
padding: 100px 20px;
}
main {
padding: 100px 20px;
}

img.logo {
position: absolute;
top: 20px;
left: 20px;
display: block;
width: 180px;
}
img.logo {
position: absolute;
top: 20px;
left: 20px;
display: block;
width: 180px;
}

h1 {
font-weight: 100;
font-size: 4em;
margin-bottom: 10px;
}
h1 {
font-weight: 100;
font-size: 4em;
margin-bottom: 10px;
}

h3 {
font-size: 1.4em;
font-weight: 300;
margin-bottom: 10px;
}
h3 {
font-size: 1.4em;
font-weight: 300;
margin-bottom: 10px;
}

pre {
min-height: 100px;
border: 1px solid #EEE;
border-radius: 5px;
color: #555;
background: #f5f5f5;
padding: 10px;
overflow: hidden;
overflow-wrap: break-word;
word-wrap: break-word;
}
pre {
min-height: 100px;
border: 1px solid #EEE;
border-radius: 5px;
color: #555;
background: #f5f5f5;
padding: 10px;
overflow: hidden;
overflow-wrap: break-word;
word-wrap: break-word;
}

.center-text {
text-align: center;
}
.center-text {
text-align: center;
}

.italic {
font-style: italic;
}
</style>
.italic {
font-style: italic;
}
</style>
</head>
<body>
Expand Down

0 comments on commit ef5f31a

Please sign in to comment.