├── .gitignore ├── LICENSE ├── README.md ├── README.ru.md ├── data.json ├── images ├── no-frameworks-auth.png ├── no-frameworks-authenticated.png ├── no-frameworks-main-en.png ├── no-frameworks-main-ru.png ├── no-frameworks-run.png └── no-frameworks.jpg ├── pom.xml └── src └── main ├── java └── com │ └── Ox08 │ └── noframeworks │ └── FeelsLikeAServer.java └── resources ├── i18n ├── gbMessages.properties └── gbMessages_ru.properties └── static ├── css └── lit.css ├── html ├── index.html ├── login.html └── template │ └── main.html ├── img └── favicon.ico └── js ├── gb.js └── login.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/README.md -------------------------------------------------------------------------------- /README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/README.ru.md -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/data.json -------------------------------------------------------------------------------- /images/no-frameworks-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/images/no-frameworks-auth.png -------------------------------------------------------------------------------- /images/no-frameworks-authenticated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/images/no-frameworks-authenticated.png -------------------------------------------------------------------------------- /images/no-frameworks-main-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/images/no-frameworks-main-en.png -------------------------------------------------------------------------------- /images/no-frameworks-main-ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/images/no-frameworks-main-ru.png -------------------------------------------------------------------------------- /images/no-frameworks-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/images/no-frameworks-run.png -------------------------------------------------------------------------------- /images/no-frameworks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/images/no-frameworks.jpg -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/Ox08/noframeworks/FeelsLikeAServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/src/main/java/com/Ox08/noframeworks/FeelsLikeAServer.java -------------------------------------------------------------------------------- /src/main/resources/i18n/gbMessages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/src/main/resources/i18n/gbMessages.properties -------------------------------------------------------------------------------- /src/main/resources/i18n/gbMessages_ru.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/src/main/resources/i18n/gbMessages_ru.properties -------------------------------------------------------------------------------- /src/main/resources/static/css/lit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/src/main/resources/static/css/lit.css -------------------------------------------------------------------------------- /src/main/resources/static/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/src/main/resources/static/html/index.html -------------------------------------------------------------------------------- /src/main/resources/static/html/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/src/main/resources/static/html/login.html -------------------------------------------------------------------------------- /src/main/resources/static/html/template/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/src/main/resources/static/html/template/main.html -------------------------------------------------------------------------------- /src/main/resources/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/src/main/resources/static/img/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/static/js/gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/src/main/resources/static/js/gb.js -------------------------------------------------------------------------------- /src/main/resources/static/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex0x08/no-frameworks/HEAD/src/main/resources/static/js/login.js --------------------------------------------------------------------------------