Skip to content

Commit 177cd51

Browse files
committed
feature: auth
1 parent a00ffbf commit 177cd51

File tree

11 files changed

+10126
-0
lines changed

11 files changed

+10126
-0
lines changed

auth/.babelrc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"presets": [
3+
[
4+
"env",
5+
{
6+
"targets": {
7+
"browsers": "last 1 chrome versions"
8+
}
9+
}
10+
]
11+
],
12+
}

auth/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.cache
2+
dist

auth/credits.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Credits
2+
3+
* Background Created by Quinky - Freepik.com https://www.freepik.com/free-photos-vectors/background
4+
* UI by Enrico Deleo https://enricodeleo.com

auth/index.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>My App</title>
7+
</head>
8+
9+
<body>
10+
<div id="app"></div>
11+
12+
<!-- Note the reference to src here. Parcel will rewrite it on build. -->
13+
<script src="./src/main.js"></script>
14+
</body>
15+
16+
</html>

0 commit comments

Comments
 (0)