Add Login page

This commit is contained in:
Sonny 2019-07-20 09:57:10 +02:00
parent b1c5be61f1
commit 679414a703
34 changed files with 6545 additions and 2 deletions

17
gulp/sass.js Normal file
View file

@ -0,0 +1,17 @@
import { src, dest } from "gulp";
import concat from "gulp-concat";
import path from "path";
import sass from "gulp-sass";
const PROJECT_DIR = path.join("src", "newsreader");
const STATIC_DIR = path.join(PROJECT_DIR, "static");
export const ACCOUNTS_DIR = path.join(PROJECT_DIR, "accounts", "static");
export default function accountsTask(){
return src(`${STATIC_DIR}/src/scss/accounts/index.scss`)
.pipe(sass().on("error", sass.logError))
.pipe(concat("accounts.css"))
.pipe(dest(`${ACCOUNTS_DIR}/accounts/dist/css`));
};