├── .gitignore ├── LICENSE ├── README.md ├── css ├── materialize.css └── materialize.min.css ├── font ├── material-design-icons │ ├── LICENSE.txt │ ├── Material-Design-Icons.eot │ ├── Material-Design-Icons.svg │ ├── Material-Design-Icons.ttf │ ├── Material-Design-Icons.woff │ └── Material-Design-Icons.woff2 └── roboto │ ├── Roboto-Bold.ttf │ ├── Roboto-Bold.woff │ ├── Roboto-Bold.woff2 │ ├── Roboto-Light.ttf │ ├── Roboto-Light.woff │ ├── Roboto-Light.woff2 │ ├── Roboto-Medium.ttf │ ├── Roboto-Medium.woff │ ├── Roboto-Medium.woff2 │ ├── Roboto-Regular.ttf │ ├── Roboto-Regular.woff │ ├── Roboto-Regular.woff2 │ ├── Roboto-Thin.ttf │ ├── Roboto-Thin.woff │ └── Roboto-Thin.woff2 ├── img ├── bg.jpg └── jad.jpg ├── index.html └── js ├── jquery.min.js ├── materialize.js └── materialize.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | me.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/README.md -------------------------------------------------------------------------------- /css/materialize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/css/materialize.css -------------------------------------------------------------------------------- /css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/css/materialize.min.css -------------------------------------------------------------------------------- /font/material-design-icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/material-design-icons/LICENSE.txt -------------------------------------------------------------------------------- /font/material-design-icons/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/material-design-icons/Material-Design-Icons.eot -------------------------------------------------------------------------------- /font/material-design-icons/Material-Design-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/material-design-icons/Material-Design-Icons.svg -------------------------------------------------------------------------------- /font/material-design-icons/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/material-design-icons/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /font/material-design-icons/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/material-design-icons/Material-Design-Icons.woff -------------------------------------------------------------------------------- /font/material-design-icons/Material-Design-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/material-design-icons/Material-Design-Icons.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/img/bg.jpg -------------------------------------------------------------------------------- /img/jad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/img/jad.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/index.html -------------------------------------------------------------------------------- /js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/js/jquery.min.js -------------------------------------------------------------------------------- /js/materialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/js/materialize.js -------------------------------------------------------------------------------- /js/materialize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jadjoubran/building-realtime-web-apps/HEAD/js/materialize.min.js --------------------------------------------------------------------------------