├── README.md ├── affiliates └── affiliates.tpl ├── clientarea.tpl ├── error ├── alert.tpl └── notifications.tpl ├── footer.tpl ├── header.tpl ├── imgs ├── bg.jpg └── bg1.jpg ├── login.tpl ├── pwreset.tpl ├── register.tpl ├── service_hosting.tpl ├── service_ics.tpl ├── src ├── css │ ├── mdui.css │ ├── mdui.css.map │ ├── mdui.min.css │ └── mdui.min.css.map ├── fonts │ └── roboto │ │ ├── LICENSE.txt │ │ ├── Roboto-Black.woff │ │ ├── Roboto-Black.woff2 │ │ ├── Roboto-BlackItalic.woff │ │ ├── Roboto-BlackItalic.woff2 │ │ ├── Roboto-Bold.woff │ │ ├── Roboto-Bold.woff2 │ │ ├── Roboto-BoldItalic.woff │ │ ├── Roboto-BoldItalic.woff2 │ │ ├── Roboto-Light.woff │ │ ├── Roboto-Light.woff2 │ │ ├── Roboto-LightItalic.woff │ │ ├── Roboto-LightItalic.woff2 │ │ ├── Roboto-Medium.woff │ │ ├── Roboto-Medium.woff2 │ │ ├── Roboto-MediumItalic.woff │ │ ├── Roboto-MediumItalic.woff2 │ │ ├── Roboto-Regular.woff │ │ ├── Roboto-Regular.woff2 │ │ ├── Roboto-RegularItalic.woff │ │ ├── Roboto-RegularItalic.woff2 │ │ ├── Roboto-Thin.woff │ │ ├── Roboto-Thin.woff2 │ │ ├── Roboto-ThinItalic.woff │ │ └── Roboto-ThinItalic.woff2 ├── icons │ └── material-icons │ │ ├── LICENSE.txt │ │ ├── MaterialIcons-Regular.ijmap │ │ ├── MaterialIcons-Regular.woff │ │ └── MaterialIcons-Regular.woff2 └── js │ ├── mdui.esm.js │ ├── mdui.esm.js.map │ ├── mdui.js │ ├── mdui.js.map │ ├── mdui.min.js │ └── mdui.min.js.map ├── theme.config └── viewticket.tpl /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/README.md -------------------------------------------------------------------------------- /affiliates/affiliates.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/affiliates/affiliates.tpl -------------------------------------------------------------------------------- /clientarea.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/clientarea.tpl -------------------------------------------------------------------------------- /error/alert.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/error/alert.tpl -------------------------------------------------------------------------------- /error/notifications.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/error/notifications.tpl -------------------------------------------------------------------------------- /footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/footer.tpl -------------------------------------------------------------------------------- /header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/header.tpl -------------------------------------------------------------------------------- /imgs/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/imgs/bg.jpg -------------------------------------------------------------------------------- /imgs/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/imgs/bg1.jpg -------------------------------------------------------------------------------- /login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/login.tpl -------------------------------------------------------------------------------- /pwreset.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/pwreset.tpl -------------------------------------------------------------------------------- /register.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/register.tpl -------------------------------------------------------------------------------- /service_hosting.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/service_hosting.tpl -------------------------------------------------------------------------------- /service_ics.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/service_ics.tpl -------------------------------------------------------------------------------- /src/css/mdui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/css/mdui.css -------------------------------------------------------------------------------- /src/css/mdui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/css/mdui.css.map -------------------------------------------------------------------------------- /src/css/mdui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/css/mdui.min.css -------------------------------------------------------------------------------- /src/css/mdui.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/css/mdui.min.css.map -------------------------------------------------------------------------------- /src/fonts/roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/LICENSE.txt -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-Black.woff -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-Black.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-BlackItalic.woff -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-BlackItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-BoldItalic.woff -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-LightItalic.woff -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-LightItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-MediumItalic.woff -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-MediumItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-RegularItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-RegularItalic.woff -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-RegularItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-RegularItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-ThinItalic.woff -------------------------------------------------------------------------------- /src/fonts/roboto/Roboto-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/fonts/roboto/Roboto-ThinItalic.woff2 -------------------------------------------------------------------------------- /src/icons/material-icons/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/icons/material-icons/LICENSE.txt -------------------------------------------------------------------------------- /src/icons/material-icons/MaterialIcons-Regular.ijmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/icons/material-icons/MaterialIcons-Regular.ijmap -------------------------------------------------------------------------------- /src/icons/material-icons/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/icons/material-icons/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /src/icons/material-icons/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/icons/material-icons/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /src/js/mdui.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/js/mdui.esm.js -------------------------------------------------------------------------------- /src/js/mdui.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/js/mdui.esm.js.map -------------------------------------------------------------------------------- /src/js/mdui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/js/mdui.js -------------------------------------------------------------------------------- /src/js/mdui.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/js/mdui.js.map -------------------------------------------------------------------------------- /src/js/mdui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/js/mdui.min.js -------------------------------------------------------------------------------- /src/js/mdui.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/src/js/mdui.min.js.map -------------------------------------------------------------------------------- /theme.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/theme.config -------------------------------------------------------------------------------- /viewticket.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Someone-Yang/idcsmart-yang-mdui-clientarea/HEAD/viewticket.tpl --------------------------------------------------------------------------------