diff options
author | 2020-11-16 00:10:28 +0100 | |
---|---|---|
committer | 2020-11-16 00:10:28 +0100 | |
commit | e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d (patch) | |
tree | 55713f725f77b44ebfec86e4eec3ce33e71458ca /client/public | |
download | website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.gz website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.tar.bz2 website_creator-e06ec920f7a5d784e674c4c4b4e6d1da3dc7391d.zip |
api, login, auth
Diffstat (limited to 'client/public')
-rw-r--r-- | client/public/index.html | 14 | ||||
-rw-r--r-- | client/public/out.js | 1 |
2 files changed, 15 insertions, 0 deletions
diff --git a/client/public/index.html b/client/public/index.html new file mode 100644 index 0000000..cfd9bee --- /dev/null +++ b/client/public/index.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html lang="pl"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width"> + <title>Strona publiczna</title> +</head> +<body> + <h1>Strona publiczna</h1> + <div id="app"></div> + <script src="out.js"></script> +</body> +</html> + diff --git a/client/public/out.js b/client/public/out.js new file mode 100644 index 0000000..d987759 --- /dev/null +++ b/client/public/out.js @@ -0,0 +1 @@ +console.log('hello ze strony testowej'); |