forked from OpenServer/OpenAuth_views
A lot of new views
This commit is contained in:
3
public/font.css
Normal file
3
public/font.css
Normal file
@ -0,0 +1,3 @@
|
||||
* {
|
||||
font-family: 'Roboto', sans-serif !important;
|
||||
}
|
245
public/global.css
Normal file
245
public/global.css
Normal file
@ -0,0 +1,245 @@
|
||||
:root {
|
||||
--primary: #1E88E5;
|
||||
--mdc-theme-primary: var(--primary);
|
||||
--mdc-theme-primary-bg: var(--mdc-theme--primary);
|
||||
--mdc-theme-on-primary: white;
|
||||
--error: #ff2f00;
|
||||
--border-color: #ababab;
|
||||
|
||||
--default-font-size: 1.05rem;
|
||||
}
|
||||
|
||||
* {
|
||||
font-family: 'Roboto', 'Helvetica', sans-serif;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
margin: 0;
|
||||
color: #636363;
|
||||
position: relative;
|
||||
background: #eee;
|
||||
height: 100%;
|
||||
font-size: var(--default-font-size);
|
||||
}
|
||||
|
||||
.group {
|
||||
position: relative;
|
||||
margin-bottom: 24px;
|
||||
min-height: 45px;
|
||||
}
|
||||
|
||||
.floating>input {
|
||||
font-size: 1.2rem;
|
||||
padding: 10px 10px 10px 5px;
|
||||
appearance: none;
|
||||
-webkit-appearance: none;
|
||||
display: block;
|
||||
background: #fafafa;
|
||||
background: unset;
|
||||
color: #636363;
|
||||
width: 100%;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
/* border-bottom: 1px solid #757575; */
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.floating>input:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
/* Label */
|
||||
|
||||
.floating>label {
|
||||
color: #999;
|
||||
font-size: 18px;
|
||||
font-weight: normal;
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
left: 5px;
|
||||
top: 10px;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
/* active */
|
||||
|
||||
.floating>input:focus~label,
|
||||
.floating>input.used~label {
|
||||
top: -.75em;
|
||||
transform: scale(.75);
|
||||
left: -2px;
|
||||
/* font-size: 14px; */
|
||||
color: var(--primary);
|
||||
transform-origin: left;
|
||||
}
|
||||
|
||||
/* Underline */
|
||||
|
||||
.bar {
|
||||
position: relative;
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.bar:before,
|
||||
.bar:after {
|
||||
content: '';
|
||||
height: 2px;
|
||||
width: 0;
|
||||
bottom: 1px;
|
||||
position: absolute;
|
||||
background: var(--primary);
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.bar:before {
|
||||
left: 50%;
|
||||
}
|
||||
|
||||
.bar:after {
|
||||
right: 50%;
|
||||
}
|
||||
|
||||
/* active */
|
||||
|
||||
.floating>input:focus~.bar:before,
|
||||
.floating>input:focus~.bar:after {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
/* Highlight */
|
||||
|
||||
.highlight {
|
||||
position: absolute;
|
||||
height: 60%;
|
||||
width: 100px;
|
||||
top: 25%;
|
||||
left: 0;
|
||||
pointer-events: none;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* active */
|
||||
|
||||
.floating>input:focus~.highlight {
|
||||
animation: inputHighlighter 0.3s ease;
|
||||
}
|
||||
|
||||
/* Animations */
|
||||
|
||||
@keyframes inputHighlighter {
|
||||
from {
|
||||
background: var(--primary);
|
||||
}
|
||||
|
||||
to {
|
||||
width: 0;
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.btn {
|
||||
position: relative;
|
||||
|
||||
display: block;
|
||||
margin: 2rem;
|
||||
padding: 0 1em;
|
||||
|
||||
overflow: hidden;
|
||||
|
||||
border-width: 0;
|
||||
outline: none;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
|
||||
|
||||
background-color: #cccccc;
|
||||
color: #ecf0f1;
|
||||
|
||||
transition: background-color .3s;
|
||||
|
||||
height: 48px;
|
||||
|
||||
text-transform: uppercase;
|
||||
font-weight: 500;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.btn:hover,
|
||||
.btn:focus {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
|
||||
.btn>* {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.btn span {
|
||||
display: block;
|
||||
padding: 12px 24px;
|
||||
}
|
||||
|
||||
.btn:before {
|
||||
content: "";
|
||||
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
|
||||
display: block;
|
||||
width: 0;
|
||||
padding-top: 0;
|
||||
|
||||
border-radius: 100%;
|
||||
|
||||
background-color: rgba(236, 240, 241, .3);
|
||||
|
||||
-webkit-transform: translate(-50%, -50%);
|
||||
-moz-transform: translate(-50%, -50%);
|
||||
-ms-transform: translate(-50%, -50%);
|
||||
-o-transform: translate(-50%, -50%);
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
.btn:active:before {
|
||||
width: 120%;
|
||||
padding-top: 120%;
|
||||
|
||||
transition: width .2s ease-out, padding-top .2s ease-out;
|
||||
}
|
||||
|
||||
.loader_box {
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.loader {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.loader:after {
|
||||
content: " ";
|
||||
display: block;
|
||||
width: 46px;
|
||||
height: 46px;
|
||||
margin: 1px;
|
||||
border-radius: 50%;
|
||||
border: 5px solid var(--primary);
|
||||
border-color: var(--primary) transparent var(--primary) transparent;
|
||||
animation: loader 1.2s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes loader {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
35
public/global.js
Normal file
35
public/global.js
Normal file
@ -0,0 +1,35 @@
|
||||
(() => {
|
||||
const elements = new WeakSet();
|
||||
|
||||
function check() {
|
||||
document.querySelectorAll(".floating>input").forEach(e => {
|
||||
if (elements.has(e)) return;
|
||||
elements.add(e);
|
||||
|
||||
function checkState() {
|
||||
console.log("Check State");
|
||||
if (e.value !== "") {
|
||||
if (e.classList.contains("used")) return;
|
||||
e.classList.add("used")
|
||||
} else {
|
||||
if (e.classList.contains("used")) e.classList.remove("used")
|
||||
}
|
||||
}
|
||||
|
||||
e.addEventListener("change", () => checkState())
|
||||
checkState()
|
||||
})
|
||||
};
|
||||
|
||||
const observer = new MutationObserver((mutations) => {
|
||||
check();
|
||||
});
|
||||
|
||||
|
||||
// Start observing the target node for configured mutations
|
||||
observer.observe(window.document, {
|
||||
childList: true,
|
||||
subtree: true
|
||||
});
|
||||
check();
|
||||
})()
|
3
public/home/bundle.css
Normal file
3
public/home/bundle.css
Normal file
@ -0,0 +1,3 @@
|
||||
.main.svelte-o924iy{padding:2rem}li.svelte-o924iy{list-style:none;padding:1rem}li.svelte-o924iy>a.svelte-o924iy{text-decoration:none}
|
||||
|
||||
/*# sourceMappingURL=bundle.css.map */
|
12
public/home/bundle.css.map
Normal file
12
public/home/bundle.css.map
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"version": 3,
|
||||
"file": "bundle.css",
|
||||
"sources": [
|
||||
"../../src/Home/App.svelte"
|
||||
],
|
||||
"sourcesContent": [
|
||||
"<style>\n .main {\n padding: 2rem;\n }\n\n li {\n list-style: none;\n padding: 1rem;\n }\n\n li>a {\n text-decoration: none;\n }\n</style>\n\n<div class=\"main\">\n <h1>Home Page</h1>\n\n <h2>About</h2>\n <p>\n OpenAuth is a Service to provide simple Authentication to a veriaty of Applications.\n With a simple to use API and different Strategies, it can be easily integrated\n into most Applications.\n </p>\n\n <h2>QickLinks</h2>\n <p>\n If you want to manage your Account, click <a href=\"user.html\">here</a>\n </p>\n\n <h2> Applications using OpenAuth </h2>\n\n <ul>\n <li><a href=\"https://ebook.stamm.me\">EBook Store and Reader</a></li>\n <li><a href=\"https://notes.hibas123.de\">Secure and Simple Notes application</a></li>\n </ul>\n</div>"
|
||||
],
|
||||
"names": [],
|
||||
"mappings": "AACG,KAAK,cAAC,CAAC,AACJ,OAAO,CAAE,IAAI,AAChB,CAAC,AAED,EAAE,cAAC,CAAC,AACD,UAAU,CAAE,IAAI,CAChB,OAAO,CAAE,IAAI,AAChB,CAAC,AAED,gBAAE,CAAC,CAAC,cAAC,CAAC,AACH,eAAe,CAAE,IAAI,AACxB,CAAC"
|
||||
}
|
1828
public/home/bundle.js
Normal file
1828
public/home/bundle.js
Normal file
File diff suppressed because it is too large
Load Diff
1
public/home/bundle.js.map
Normal file
1
public/home/bundle.js.map
Normal file
File diff suppressed because one or more lines are too long
21
public/index.html
Normal file
21
public/index.html
Normal file
@ -0,0 +1,21 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset='utf8'>
|
||||
<meta name='viewport' content='width=device-width'>
|
||||
|
||||
<title>OpenAuth - Home</title>
|
||||
|
||||
<link rel='stylesheet' href='global.css'>
|
||||
<link rel='stylesheet' href='home/bundle.css'>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="content"></div>
|
||||
<script src='home/bundle.js'></script>
|
||||
<script src="global.js"></script>
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto" lazyload>
|
||||
</body>
|
||||
|
||||
</html>
|
21
public/login.html
Normal file
21
public/login.html
Normal file
@ -0,0 +1,21 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset='utf8'>
|
||||
<meta name='viewport' content='width=device-width'>
|
||||
|
||||
<title>OpenAuth - Login</title>
|
||||
|
||||
<link rel='stylesheet' href='global.css'>
|
||||
<link rel='stylesheet' href='login/bundle.css'>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="content"></div>
|
||||
<script src='login/bundle.js'></script>
|
||||
<script src="global.js"></script>
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto" lazyload>
|
||||
</body>
|
||||
|
||||
</html>
|
11
public/login/bundle.css
Normal file
11
public/login/bundle.css
Normal file
File diff suppressed because one or more lines are too long
28
public/login/bundle.css.map
Normal file
28
public/login/bundle.css.map
Normal file
File diff suppressed because one or more lines are too long
6197
public/login/bundle.js
Normal file
6197
public/login/bundle.js
Normal file
File diff suppressed because one or more lines are too long
1
public/login/bundle.js.map
Normal file
1
public/login/bundle.js.map
Normal file
File diff suppressed because one or more lines are too long
202
public/roboto/LICENSE.txt
Normal file
202
public/roboto/LICENSE.txt
Normal file
@ -0,0 +1,202 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
BIN
public/roboto/Roboto-Black.ttf
Normal file
BIN
public/roboto/Roboto-Black.ttf
Normal file
Binary file not shown.
BIN
public/roboto/Roboto-BlackItalic.ttf
Normal file
BIN
public/roboto/Roboto-BlackItalic.ttf
Normal file
Binary file not shown.
BIN
public/roboto/Roboto-Bold.ttf
Normal file
BIN
public/roboto/Roboto-Bold.ttf
Normal file
Binary file not shown.
BIN
public/roboto/Roboto-BoldItalic.ttf
Normal file
BIN
public/roboto/Roboto-BoldItalic.ttf
Normal file
Binary file not shown.
BIN
public/roboto/Roboto-Italic.ttf
Normal file
BIN
public/roboto/Roboto-Italic.ttf
Normal file
Binary file not shown.
BIN
public/roboto/Roboto-Light.ttf
Normal file
BIN
public/roboto/Roboto-Light.ttf
Normal file
Binary file not shown.
BIN
public/roboto/Roboto-LightItalic.ttf
Normal file
BIN
public/roboto/Roboto-LightItalic.ttf
Normal file
Binary file not shown.
BIN
public/roboto/Roboto-Medium.ttf
Normal file
BIN
public/roboto/Roboto-Medium.ttf
Normal file
Binary file not shown.
BIN
public/roboto/Roboto-MediumItalic.ttf
Normal file
BIN
public/roboto/Roboto-MediumItalic.ttf
Normal file
Binary file not shown.
BIN
public/roboto/Roboto-Regular.ttf
Normal file
BIN
public/roboto/Roboto-Regular.ttf
Normal file
Binary file not shown.
BIN
public/roboto/Roboto-Regular.woff2
Normal file
BIN
public/roboto/Roboto-Regular.woff2
Normal file
Binary file not shown.
BIN
public/roboto/Roboto-Thin.ttf
Normal file
BIN
public/roboto/Roboto-Thin.ttf
Normal file
Binary file not shown.
BIN
public/roboto/Roboto-ThinItalic.ttf
Normal file
BIN
public/roboto/Roboto-ThinItalic.ttf
Normal file
Binary file not shown.
0
public/serviceworker.js
Normal file
0
public/serviceworker.js
Normal file
21
public/user.html
Normal file
21
public/user.html
Normal file
@ -0,0 +1,21 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset='utf8'>
|
||||
<meta name='viewport' content='width=device-width'>
|
||||
|
||||
<title>OpenAuth - User</title>
|
||||
|
||||
<link rel='stylesheet' href='global.css'>
|
||||
<link rel='stylesheet' href='user/bundle.css'>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="content" style="height:100%"></div>
|
||||
<script src='user/bundle.js'></script>
|
||||
<script src="global.js"></script>
|
||||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto" lazyload>
|
||||
</body>
|
||||
|
||||
</html>
|
12
public/user.old/bundle.css
Normal file
12
public/user.old/bundle.css
Normal file
@ -0,0 +1,12 @@
|
||||
.loading.svelte-1ee89l3{background-color:rgba(0, 0, 0, 0.04);filter:blur(10px)}:root{--sidebar-width:250px}.root.svelte-1ee89l3{height:100%}.container.svelte-1ee89l3{display:grid;height:100%;grid-template-columns:auto 100%;grid-template-rows:60px auto 60px;grid-template-areas:"sidebar header"
|
||||
"sidebar mc"
|
||||
"sidebar footer"
|
||||
}.header.svelte-1ee89l3{grid-area:header;background-color:var(--primary);padding:12px;display:flex}.header.svelte-1ee89l3>h1.svelte-1ee89l3{margin:0;padding:0;font-size:24px;line-height:36px;color:white;margin-left:2rem}.header.svelte-1ee89l3>button.svelte-1ee89l3{height:36px;background-color:transparent;border:none;font-size:20px}.header.svelte-1ee89l3>button.svelte-1ee89l3:hover{background-color:rgba(255, 255, 255, 0.151)
|
||||
}.sidebar.svelte-1ee89l3{width:0;overflow:hidden;grid-area:sidebar;transition:width .2s;background-color:lightgrey;height:100%}.sidebar-visible.svelte-1ee89l3{width:var(--sidebar-width);transition:width .2s;box-shadow:10px 0px 10px 2px rgba(0, 0, 0, 0.52)}.content.svelte-1ee89l3{grid-area:mc;padding:1rem}.footer.svelte-1ee89l3{grid-area:footer}@media(min-width: 45rem){.container.svelte-1ee89l3{grid-template-columns:auto 1fr}.sidebar.svelte-1ee89l3{width:var(--sidebar-width);transition:all .2s;box-shadow:10px 0px 10px 2px rgba(0, 0, 0, 0.52)}.content.svelte-1ee89l3{padding:2rem}}.loader_container.svelte-1ee89l3{position:absolute;display:flex;flex-direction:column;justify-content:center;top:0;bottom:0;left:0;right:0;z-index:2}
|
||||
:root{--rel-size:0.75rem}.container.svelte-zltjsn{height:calc(var(--rel-size) * 3);padding:var(--rel-size);display:flex;align-items:center}.icon.svelte-zltjsn{width:calc(var(--rel-size) * 3);height:calc(var(--rel-size) * 3)}.icon.svelte-zltjsn>img.svelte-zltjsn{width:calc(var(--rel-size) * 3);height:calc(var(--rel-size) * 3)}.title.svelte-zltjsn{margin-left:var(--rel-size)}
|
||||
.btn.svelte-1lc4uv{background-color:var(--primary);margin:auto 0;margin-left:1rem;font-size:1rem;padding:0 0.5rem}.floating.svelte-1lc4uv{margin-bottom:0}.input-container.svelte-1lc4uv{display:flex}.input-container.svelte-1lc4uv>.svelte-1lc4uv:first-child{flex-grow:1}select.svelte-1lc4uv{background-color:unset;border:0;border-radius:0;color:unset;font-size:unset;border-bottom:1px solid #757575;-moz-appearance:none;-webkit-appearance:none;appearance:none;height:100%;width:100%}select.svelte-1lc4uv>option.svelte-1lc4uv{background-color:unset}.select-wrapper.svelte-1lc4uv{position:relative}.select-wrapper.svelte-1lc4uv::after{content:">";display:block;position:absolute;right:2rem;top:0;bottom:0;width:1rem;transform:rotate(90deg) scaleY(2)}.error.svelte-1lc4uv{color:var(--error)}
|
||||
.btn.svelte-hfyfkx{background-color:var(--primary);margin:auto 0;margin-left:1rem;font-size:1rem;padding:0 0.5rem}.input-container>.svelte-hfyfkx:first-child{flex-grow:1}
|
||||
.box.svelte-yv48ir{border-radius:4px;box-shadow:0 8px 12px rgba(0, 0, 0, 0.30), 0 5px 4px rgba(0, 0, 0, 0.22);padding:2rem;margin-bottom:1rem;background-color:white}.box.svelte-yv48ir>h1{margin:0;margin-bottom:1rem;color:#444444;font-size:1.3rem}.box.svelte-yv48ir>div{padding:16px;border-top:1px solid var(--border-color);word-wrap:break-word}.box.svelte-yv48ir>div:first-of-type{border-top:none}@media(min-width: 45rem){.box.svelte-yv48ir{margin-bottom:2rem}}
|
||||
.root.svelte-1h07xvd:hover{background-color:rgba(0, 0, 0, 0.04)}.container.svelte-1h07xvd{display:flex;flex-direction:row}.values.svelte-1h07xvd{flex-grow:1;display:flex;flex-direction:column;max-width:calc(100% - var(--default-font-size) - 16px)}.values.svelte-1h07xvd>div.svelte-1h07xvd:first-child{transform-origin:left;transform:scale(0.95);margin-right:24px;font-weight:500}.values.svelte-1h07xvd>div.svelte-1h07xvd:nth-child(2){color:black}svg{margin:auto 8px auto 8px;height:var(--default-font-size);min-width:var(--default-font-size)}.body.svelte-1h07xvd{box-sizing:border-box;padding:.1px;margin-top:2rem}@media(min-width: 45rem){.values.svelte-1h07xvd{flex-direction:row}.values.svelte-1h07xvd>div.svelte-1h07xvd:first-child{transform:unset;flex-basis:120px;min-width:120px}}.highlight-element.svelte-1h07xvd{background-color:#7bff003b}
|
||||
|
||||
/*# sourceMappingURL=bundle.css.map */
|
22
public/user.old/bundle.css.map
Normal file
22
public/user.old/bundle.css.map
Normal file
File diff suppressed because one or more lines are too long
4588
public/user.old/bundle.js
Normal file
4588
public/user.old/bundle.js
Normal file
File diff suppressed because it is too large
Load Diff
1
public/user.old/bundle.js.map
Normal file
1
public/user.old/bundle.js.map
Normal file
File diff suppressed because one or more lines are too long
12
public/user/bundle.css
Normal file
12
public/user/bundle.css
Normal file
@ -0,0 +1,12 @@
|
||||
.loading.svelte-1ee89l3{background-color:rgba(0, 0, 0, 0.04);filter:blur(10px)}:root{--sidebar-width:250px}.root.svelte-1ee89l3{height:100%}.container.svelte-1ee89l3{display:grid;height:100%;grid-template-columns:auto 100%;grid-template-rows:60px auto 60px;grid-template-areas:"sidebar header"
|
||||
"sidebar mc"
|
||||
"sidebar footer"
|
||||
}.header.svelte-1ee89l3{grid-area:header;background-color:var(--primary);padding:12px;display:flex}.header.svelte-1ee89l3>h1.svelte-1ee89l3{margin:0;padding:0;font-size:24px;line-height:36px;color:white;margin-left:2rem}.header.svelte-1ee89l3>button.svelte-1ee89l3{height:36px;background-color:transparent;border:none;font-size:20px}.header.svelte-1ee89l3>button.svelte-1ee89l3:hover{background-color:rgba(255, 255, 255, 0.151)
|
||||
}.sidebar.svelte-1ee89l3{width:0;overflow:hidden;grid-area:sidebar;transition:width .2s;background-color:lightgrey;height:100%}.sidebar-visible.svelte-1ee89l3{width:var(--sidebar-width);transition:width .2s;box-shadow:10px 0px 10px 2px rgba(0, 0, 0, 0.52)}.content.svelte-1ee89l3{grid-area:mc;padding:1rem}.footer.svelte-1ee89l3{grid-area:footer}@media(min-width: 45rem){.container.svelte-1ee89l3{grid-template-columns:auto 1fr}.sidebar.svelte-1ee89l3{width:var(--sidebar-width);transition:all .2s;box-shadow:10px 0px 10px 2px rgba(0, 0, 0, 0.52)}.content.svelte-1ee89l3{padding:2rem}}.loader_container.svelte-1ee89l3{position:absolute;display:flex;flex-direction:column;justify-content:center;top:0;bottom:0;left:0;right:0;z-index:2}
|
||||
:root{--rel-size:0.75rem}.container.svelte-zltjsn{height:calc(var(--rel-size) * 3);padding:var(--rel-size);display:flex;align-items:center}.icon.svelte-zltjsn{width:calc(var(--rel-size) * 3);height:calc(var(--rel-size) * 3)}.icon.svelte-zltjsn>img.svelte-zltjsn{width:calc(var(--rel-size) * 3);height:calc(var(--rel-size) * 3)}.title.svelte-zltjsn{margin-left:var(--rel-size)}
|
||||
.btn.svelte-1lc4uv{background-color:var(--primary);margin:auto 0;margin-left:1rem;font-size:1rem;padding:0 0.5rem}.floating.svelte-1lc4uv{margin-bottom:0}.input-container.svelte-1lc4uv{display:flex}.input-container.svelte-1lc4uv>.svelte-1lc4uv:first-child{flex-grow:1}select.svelte-1lc4uv{background-color:unset;border:0;border-radius:0;color:unset;font-size:unset;border-bottom:1px solid #757575;-moz-appearance:none;-webkit-appearance:none;appearance:none;height:100%;width:100%}select.svelte-1lc4uv>option.svelte-1lc4uv{background-color:unset}.select-wrapper.svelte-1lc4uv{position:relative}.select-wrapper.svelte-1lc4uv::after{content:">";display:block;position:absolute;right:2rem;top:0;bottom:0;width:1rem;transform:rotate(90deg) scaleY(2)}.error.svelte-1lc4uv{color:var(--error)}
|
||||
.btn.svelte-hfyfkx{background-color:var(--primary);margin:auto 0;margin-left:1rem;font-size:1rem;padding:0 0.5rem}.input-container>.svelte-hfyfkx:first-child{flex-grow:1}
|
||||
.box.svelte-yv48ir{border-radius:4px;box-shadow:0 8px 12px rgba(0, 0, 0, 0.30), 0 5px 4px rgba(0, 0, 0, 0.22);padding:2rem;margin-bottom:1rem;background-color:white}.box.svelte-yv48ir>h1{margin:0;margin-bottom:1rem;color:#444444;font-size:1.3rem}.box.svelte-yv48ir>div{padding:16px;border-top:1px solid var(--border-color);word-wrap:break-word}.box.svelte-yv48ir>div:first-of-type{border-top:none}@media(min-width: 45rem){.box.svelte-yv48ir{margin-bottom:2rem}}
|
||||
.root.svelte-1h07xvd:hover{background-color:rgba(0, 0, 0, 0.04)}.container.svelte-1h07xvd{display:flex;flex-direction:row}.values.svelte-1h07xvd{flex-grow:1;display:flex;flex-direction:column;max-width:calc(100% - var(--default-font-size) - 16px)}.values.svelte-1h07xvd>div.svelte-1h07xvd:first-child{transform-origin:left;transform:scale(0.95);margin-right:24px;font-weight:500}.values.svelte-1h07xvd>div.svelte-1h07xvd:nth-child(2){color:black}svg{margin:auto 8px auto 8px;height:var(--default-font-size);min-width:var(--default-font-size)}.body.svelte-1h07xvd{box-sizing:border-box;padding:.1px;margin-top:2rem}@media(min-width: 45rem){.values.svelte-1h07xvd{flex-direction:row}.values.svelte-1h07xvd>div.svelte-1h07xvd:first-child{transform:unset;flex-basis:120px;min-width:120px}}.highlight-element.svelte-1h07xvd{background-color:#7bff003b}
|
||||
|
||||
/*# sourceMappingURL=bundle.css.map */
|
22
public/user/bundle.css.map
Normal file
22
public/user/bundle.css.map
Normal file
File diff suppressed because one or more lines are too long
4695
public/user/bundle.js
Normal file
4695
public/user/bundle.js
Normal file
File diff suppressed because it is too large
Load Diff
1
public/user/bundle.js.map
Normal file
1
public/user/bundle.js.map
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user