From 932d439444f10774bff546923cc0a2e5e2f2857b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 20 Jul 2018 13:57:57 +0200 Subject: Rewrite (only for backend/oauth/api use from now on) --- resources/assets/js/admin.js | 269 -------------- resources/assets/js/app.js | 13 - resources/assets/js/bootstrap.js | 52 --- resources/assets/js/chat.js | 55 --- resources/assets/js/chatServer.js | 26 -- .../assets/js/components/ExampleComponent.vue | 23 -- resources/assets/js/initial_key_gen.js | 30 -- resources/assets/js/profile.js | 39 --- resources/assets/js/setup.js | 5 - resources/assets/sass/_variables.scss | 8 - resources/assets/sass/admin.scss | 10 - resources/assets/sass/app.scss | 42 --- resources/assets/sass/chat.scss | 5 - resources/lang/en/auth.php | 19 - resources/lang/en/pagination.php | 19 - resources/lang/en/passwords.php | 22 -- resources/lang/en/validation.php | 146 -------- resources/views/admin/dashboard.blade.php | 388 --------------------- resources/views/admin/layouts/app.blade.php | 46 --- .../views/admin/layouts/left_sidebar.blade.php | 39 --- resources/views/admin/layouts/navbar.blade.php | 44 --- .../views/admin/layouts/right_sidebar.blade.php | 185 ---------- resources/views/auth/login.blade.php | 71 ---- resources/views/auth/passwords/email.blade.php | 47 --- resources/views/auth/passwords/reset.blade.php | 65 ---- resources/views/auth/register.blade.php | 79 ----- resources/views/confirmEmail.blade.php | 16 - resources/views/email/verify.blade.php | 3 - resources/views/errors/http.blade.php | 5 - resources/views/layouts/app.blade.php | 58 --- resources/views/layouts/error.blade.php | 57 --- resources/views/profile.blade.php | 36 -- resources/views/verificationSuccess.blade.php | 17 - resources/views/writeMessage.blade.php | 33 -- 34 files changed, 1972 deletions(-) delete mode 100644 resources/assets/js/admin.js delete mode 100755 resources/assets/js/app.js delete mode 100755 resources/assets/js/bootstrap.js delete mode 100755 resources/assets/js/chat.js delete mode 100755 resources/assets/js/chatServer.js delete mode 100755 resources/assets/js/components/ExampleComponent.vue delete mode 100755 resources/assets/js/initial_key_gen.js delete mode 100755 resources/assets/js/profile.js delete mode 100755 resources/assets/js/setup.js delete mode 100755 resources/assets/sass/_variables.scss delete mode 100644 resources/assets/sass/admin.scss delete mode 100755 resources/assets/sass/app.scss delete mode 100755 resources/assets/sass/chat.scss delete mode 100755 resources/lang/en/auth.php delete mode 100755 resources/lang/en/pagination.php delete mode 100755 resources/lang/en/passwords.php delete mode 100755 resources/lang/en/validation.php delete mode 100755 resources/views/admin/dashboard.blade.php delete mode 100755 resources/views/admin/layouts/app.blade.php delete mode 100644 resources/views/admin/layouts/left_sidebar.blade.php delete mode 100644 resources/views/admin/layouts/navbar.blade.php delete mode 100644 resources/views/admin/layouts/right_sidebar.blade.php delete mode 100755 resources/views/auth/login.blade.php delete mode 100755 resources/views/auth/passwords/email.blade.php delete mode 100755 resources/views/auth/passwords/reset.blade.php delete mode 100755 resources/views/auth/register.blade.php delete mode 100755 resources/views/confirmEmail.blade.php delete mode 100755 resources/views/email/verify.blade.php delete mode 100755 resources/views/errors/http.blade.php delete mode 100755 resources/views/layouts/app.blade.php delete mode 100755 resources/views/layouts/error.blade.php delete mode 100755 resources/views/profile.blade.php delete mode 100755 resources/views/verificationSuccess.blade.php delete mode 100755 resources/views/writeMessage.blade.php (limited to 'resources') diff --git a/resources/assets/js/admin.js b/resources/assets/js/admin.js deleted file mode 100644 index 95038f5..0000000 --- a/resources/assets/js/admin.js +++ /dev/null @@ -1,269 +0,0 @@ -window.$ = window.jQuery = require("../../../vendor/almasaeed2010/adminlte/bower_components/jquery/dist/jquery.min.js"); -require("../../../vendor/almasaeed2010/adminlte/bower_components/bootstrap/dist/js/bootstrap.min.js"); -require("../../../vendor/almasaeed2010/adminlte/bower_components/fastclick/lib/fastclick.js"); -require("../../../vendor/almasaeed2010/adminlte/dist/js/adminlte.min.js"); -require("../../../vendor/almasaeed2010/adminlte/plugins/jvectormap/jquery-jvectormap-1.2.2.min.js"); -require("../../../vendor/almasaeed2010/adminlte/plugins/jvectormap/jquery-jvectormap-world-mill-en.js"); -require("../../../vendor/almasaeed2010/adminlte/bower_components/jquery-slimscroll/jquery.slimscroll.min.js"); -window.Chart = require("../../../vendor/almasaeed2010/adminlte/bower_components/chart.js/Chart.js"); - - -$(function () { - 'use strict'; - /* ChartJS - * ------- - * Charts - */ - - // sales example chart - var salesChartCanvas = $('#salesChart').get(0).getContext('2d'); - var salesChart = new Chart(salesChartCanvas); - var salesChartData = { - labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], - datasets: [{ - label: 'Electronics', - fillColor: 'rgb(210, 214, 222)', - strokeColor: 'rgb(210, 214, 222)', - pointColor: 'rgb(210, 214, 222)', - pointStrokeColor: '#c1c7d1', - pointHighlightFill: '#fff', - pointHighlightStroke: 'rgb(220,220,220)', - data: [65, 59, 80, 81, 56, 55, 40] - }, - { - label: 'Digital Goods', - fillColor: 'rgba(60,141,188,0.9)', - strokeColor: 'rgba(60,141,188,0.8)', - pointColor: '#3b8bba', - pointStrokeColor: 'rgba(60,141,188,1)', - pointHighlightFill: '#fff', - pointHighlightStroke: 'rgba(60,141,188,1)', - data: [28, 48, 40, 19, 86, 27, 90] - } - ] - }; - var salesChartOptions = { - showScale: true, - scaleShowGridLines: false, - scaleGridLineColor: 'rgba(0,0,0,.05)', - scaleGridLineWidth: 1, - scaleShowHorizontalLines: true, - scaleShowVerticalLines: true, - bezierCurve: true, - bezierCurveTension: 0.3, - pointDot: false, - pointDotRadius: 4, - pointDotStrokeWidth: 1, - pointHitDetectionRadius: 20, - datasetStroke: true, - datasetStrokeWidth: 2, - datasetFill: true, - legendTemplate: '', - maintainAspectRatio: true, - responsive: true - }; - salesChart.Line(salesChartData, salesChartOptions); - - // ------------- - // - PIE CHART - - // ------------- - var pieChartCanvas = $('#pieChart').get(0).getContext('2d'); - var pieChart = new Chart(pieChartCanvas); - var PieData = [{ - value: 700, - color: '#f56954', - highlight: '#f56954', - label: 'Chrome' - }, - { - value: 500, - color: '#00a65a', - highlight: '#00a65a', - label: 'IE' - }, - { - value: 400, - color: '#f39c12', - highlight: '#f39c12', - label: 'FireFox' - }, - { - value: 600, - color: '#00c0ef', - highlight: '#00c0ef', - label: 'Safari' - }, - { - value: 300, - color: '#3c8dbc', - highlight: '#3c8dbc', - label: 'Opera' - }, - { - value: 100, - color: '#d2d6de', - highlight: '#d2d6de', - label: 'Navigator' - } - ]; - var pieOptions = { - segmentShowStroke: true, - segmentStrokeColor: '#fff', - segmentStrokeWidth: 1, - percentageInnerCutout: 50, - animationSteps: 100, - animationEasing: 'easeOutBounce', - animateRotate: true, - animateScale: false, - responsive: true, - maintainAspectRatio: false, - legendTemplate: '', - tooltipTemplate: '<%=value %> <%=label%> users' - }; - pieChart.Doughnut(PieData, pieOptions); - - - /* jVector Maps - * ------------ - * Create a world map with markers - */ - $('#world-map-markers').vectorMap({ - map: 'world_mill_en', - normalizeFunction: 'polynomial', - hoverOpacity: 0.7, - hoverColor: false, - backgroundColor: 'transparent', - regionStyle: { - initial: { - fill: 'rgba(210, 214, 222, 1)', - 'fill-opacity': 1, - stroke: 'none', - 'stroke-width': 0, - 'stroke-opacity': 1 - }, - hover: { - 'fill-opacity': 0.7, - cursor: 'pointer' - }, - selected: { - fill: 'yellow' - }, - selectedHover: {} - }, - markerStyle: { - initial: { - fill: '#00a65a', - stroke: '#111' - } - }, - markers: [{ - latLng: [41.90, 12.45], - name: 'Vatican City' - }, - { - latLng: [43.73, 7.41], - name: 'Monaco' - }, - { - latLng: [-0.52, 166.93], - name: 'Nauru' - }, - { - latLng: [-8.51, 179.21], - name: 'Tuvalu' - }, - { - latLng: [43.93, 12.46], - name: 'San Marino' - }, - { - latLng: [47.14, 9.52], - name: 'Liechtenstein' - }, - { - latLng: [7.11, 171.06], - name: 'Marshall Islands' - }, - { - latLng: [17.3, -62.73], - name: 'Saint Kitts and Nevis' - }, - { - latLng: [3.2, 73.22], - name: 'Maldives' - }, - { - latLng: [35.88, 14.5], - name: 'Malta' - }, - { - latLng: [12.05, -61.75], - name: 'Grenada' - }, - { - latLng: [13.16, -61.23], - name: 'Saint Vincent and the Grenadines' - }, - { - latLng: [13.16, -59.55], - name: 'Barbados' - }, - { - latLng: [17.11, -61.85], - name: 'Antigua and Barbuda' - }, - { - latLng: [-4.61, 55.45], - name: 'Seychelles' - }, - { - latLng: [7.35, 134.46], - name: 'Palau' - }, - { - latLng: [42.5, 1.51], - name: 'Andorra' - }, - { - latLng: [14.01, -60.98], - name: 'Saint Lucia' - }, - { - latLng: [6.91, 158.18], - name: 'Federated States of Micronesia' - }, - { - latLng: [1.3, 103.8], - name: 'Singapore' - }, - { - latLng: [1.46, 173.03], - name: 'Kiribati' - }, - { - latLng: [-21.13, -175.2], - name: 'Tonga' - }, - { - latLng: [15.3, -61.38], - name: 'Dominica' - }, - { - latLng: [-20.2, 57.5], - name: 'Mauritius' - }, - { - latLng: [26.02, 50.55], - name: 'Bahrain' - }, - { - latLng: [0.33, 6.73], - name: 'São Tomé and Príncipe' - } - ] - }); -}); - - - -//---------------------------------------------------------END OF CHARTS------------------------------------------------------ \ No newline at end of file diff --git a/resources/assets/js/app.js b/resources/assets/js/app.js deleted file mode 100755 index 7cb052d..0000000 --- a/resources/assets/js/app.js +++ /dev/null @@ -1,13 +0,0 @@ -/** - * First we will load all of this project's JavaScript dependencies which - * includes Vue and other libraries. It is a great starting point when - * building robust, powerful web applications using Vue and Laravel. - */ - -window.openpgp = require('openpgp'); -window.Vue = require('vue'); -require('./bootstrap'); -require('@fortawesome/fontawesome-free/js/all'); -require('./setup'); -require('./profile'); -require('./chat'); \ No newline at end of file diff --git a/resources/assets/js/bootstrap.js b/resources/assets/js/bootstrap.js deleted file mode 100755 index a919262..0000000 --- a/resources/assets/js/bootstrap.js +++ /dev/null @@ -1,52 +0,0 @@ -window._ = require('lodash'); -window.Popper = require('popper.js').default; - -/** - * We'll load jQuery and the Bootstrap jQuery plugin which provides support - * for JavaScript based Bootstrap features such as modals and tabs. This - * code may be modified to fit the specific needs of your application. - */ - -try { - window.$ = window.jQuery = require('jquery'); - require('bootstrap'); -} catch (e) {} - -/** - * We'll load the axios HTTP library which allows us to easily issue requests - * to our Laravel back-end. This library automatically handles sending the - * CSRF token as a header based on the value of the "XSRF" token cookie. - */ - -window.axios = require('axios'); - -window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; - -/** - * Next we will register the CSRF Token as a common header with Axios so that - * all outgoing HTTP requests automatically have it attached. This is just - * a simple convenience so we don't have to attach every token manually. - */ - -let token = document.head.querySelector('meta[name="csrf-token"]'); - -if (token) { - window.axios.defaults.headers.common['X-CSRF-TOKEN'] = token.content; -} else { - console.error('CSRF token not found: https://laravel.com/docs/csrf#csrf-x-csrf-token'); -} - -/** - * Echo exposes an expressive API for subscribing to channels and listening - * for events that are broadcast by Laravel. Echo and event broadcasting - * allows your team to easily build robust real-time web applications. - */ -// import Echo from "laravel-echo" -// window.io = require('socket.io-client'); - -// if (typeof io !== 'undefined') { -// window.Echo = new Echo({ -// broadcaster: 'socket.io', -// host: window.location.hostname + ':6001', -// }); -// } \ No newline at end of file diff --git a/resources/assets/js/chat.js b/resources/assets/js/chat.js deleted file mode 100755 index c84f9d6..0000000 --- a/resources/assets/js/chat.js +++ /dev/null @@ -1,55 +0,0 @@ -// var openpgp = window.openpgp; - -// var options = { -// userIds: [{ name:'Marvin Borner', email:'test@test.de' }], // multiple user IDs -// numBits: 4096, // RSA key size -// passphrase: 'cool password of private key' -// }; - -// openpgp.generateKey(options).then(function(key) { -// var privateKey = key.privateKeyArmored; // '-----BEGIN PGP PRIVATE KEY BLOCK ... ' -// var publicKey = key.publicKeyArmored; // '-----BEGIN PGP PUBLIC KEY BLOCK ... ' - -// console.log(publicKey); -// console.log(privateKey); -// }); - -// $.ajax({ -// type: "POST", -// url: "keys/public/1", -// data: { -// "key": "test_key_2" -// }, -// cache: false, -// success: (results) => { -// console.log(results); -// } -// }); - - - -var socket = io('http://127.0.0.1:8890', { - transports: ['websocket'] -}); -socket.on('message', (data) => { - data = JSON.parse(data); - $("#messages").append("

" + data.user + " : " + data.message + "

"); -}); - -$('input.send').click((e) => { - e.preventDefault(); - sendMessage(); -}); - -function sendMessage() { - var message = $('input.message').val(); - $('input.message').val(""); - $.ajax({ - type: "POST", - url: "sendMessage", - data: { - "message": message - }, - cache: false - }); -} \ No newline at end of file diff --git a/resources/assets/js/chatServer.js b/resources/assets/js/chatServer.js deleted file mode 100755 index fb6c7fc..0000000 --- a/resources/assets/js/chatServer.js +++ /dev/null @@ -1,26 +0,0 @@ -var app = require('express')(); -var server = require('http').Server(app); -var io = require('socket.io')(server); -var redis = require('redis'); -var port = 8890; - -server.listen(port, function () { - console.log("Listening on " + port) -}); - -io.on('connection', function (socket) { - - console.log("new client connected"); - var redisClient = redis.createClient(); - redisClient.subscribe('message'); - - redisClient.on("message", function (channel, message) { - console.log("new message" + message); - socket.emit(channel, message); - }); - - socket.on('disconnect', function () { - console.log("client connected"); - redisClient.quit(); - }); -}); diff --git a/resources/assets/js/components/ExampleComponent.vue b/resources/assets/js/components/ExampleComponent.vue deleted file mode 100755 index 2805329..0000000 --- a/resources/assets/js/components/ExampleComponent.vue +++ /dev/null @@ -1,23 +0,0 @@ - - - diff --git a/resources/assets/js/initial_key_gen.js b/resources/assets/js/initial_key_gen.js deleted file mode 100755 index 1b6875f..0000000 --- a/resources/assets/js/initial_key_gen.js +++ /dev/null @@ -1,30 +0,0 @@ -$('form[keygen]').submit((event) => { - event.preventDefault(); - - $('button[type="submit"]').attr("disabled", true).html('Loading...'); - - var openpgp = window.openpgp; - - var options = { - userIds: [{ - email: $("input#email").val() - }], - numBits: 4096, - passphrase: $("input#password").val() - }; - - openpgp.generateKey(options).then((key) => { - var privateKey = key.privateKeyArmored; - var publicKey = key.publicKeyArmored; - - localStorage.setItem("privkey", privateKey); - - var now = new Date(); - var time = now.getTime(); - time += 3600 * 1000; - now.setTime(time); - document.cookie = "publickey=" + encodeURI(publicKey.substr(96).slice(0, -35)) + "; expires=" + now.toUTCString() + ";"; - - $('form[keygen]').unbind('submit').submit(); - }); -}); \ No newline at end of file diff --git a/resources/assets/js/profile.js b/resources/assets/js/profile.js deleted file mode 100755 index d834542..0000000 --- a/resources/assets/js/profile.js +++ /dev/null @@ -1,39 +0,0 @@ -$("#avatarFile").on("change", () => { - var preview = document.querySelector('#image-preview'); - var file = document.querySelector("#avatarFile").files[0]; - var reader = new FileReader(); - - reader.addEventListener("load", () => { - preview.src = reader.result; - }, false); - - if (file) { - reader.readAsDataURL(file); - } -}); - -$("#avatarForm").submit(function (e) { - var url = "/avatar"; - var data = new FormData(); - $.each(jQuery('#avatarFile')[0].files, (i, file) => { - data.append('avatar', file); - }); - - e.preventDefault(); - $.ajax({ - url: url, - data: data, - cache: false, - contentType: false, - processData: false, - method: 'POST', - type: 'POST', - success: (data) => { - $("#avatarUploadSucceededAlert").show(); - $("#avatarUploadSucceededMessage").text(data.success); - }, - error: () => { - $("#avatarUploadFailedAlert").show(); - } - }); -}); \ No newline at end of file diff --git a/resources/assets/js/setup.js b/resources/assets/js/setup.js deleted file mode 100755 index 880bf91..0000000 --- a/resources/assets/js/setup.js +++ /dev/null @@ -1,5 +0,0 @@ -$.ajaxSetup({ - headers: { - 'X-CSRF-Token': $('input[name="_token"]').val() - } -}); \ No newline at end of file diff --git a/resources/assets/sass/_variables.scss b/resources/assets/sass/_variables.scss deleted file mode 100755 index 70ecfdb..0000000 --- a/resources/assets/sass/_variables.scss +++ /dev/null @@ -1,8 +0,0 @@ - -// Body -$body-bg: #f5f8fa; - -// Typography -$font-family-sans-serif: "Raleway", sans-serif; -$font-size-base: 0.9rem; -$line-height-base: 1.6; diff --git a/resources/assets/sass/admin.scss b/resources/assets/sass/admin.scss deleted file mode 100644 index 146b90f..0000000 --- a/resources/assets/sass/admin.scss +++ /dev/null @@ -1,10 +0,0 @@ -@import "../../../vendor/almasaeed2010/adminlte/bower_components/bootstrap/dist/css/bootstrap.min.css"; -@import "../../../vendor/almasaeed2010/adminlte/bower_components/font-awesome/css/font-awesome.min.css"; -@import "../../../vendor/almasaeed2010/adminlte/bower_components/Ionicons/css/ionicons.min.css"; -@import "../../../vendor/almasaeed2010/adminlte/bower_components/jvectormap/jquery-jvectormap.css"; -@import "../../../vendor/almasaeed2010/adminlte/dist/css/AdminLTE.min.css"; -@import "../../../vendor/almasaeed2010/adminlte/dist/css/skins/_all-skins.min.css"; -// @import "../../../vendor/almasaeed2010/adminlte/bower_components/morris.js/morris.css"; -// @import "../../../vendor/almasaeed2010/adminlte/bower_components/bootstrap-datepicker/dist/css/bootstrap-datepicker.min.css"; -// @import "../../../vendor/almasaeed2010/adminlte/bower_components/bootstrap-daterangepicker/daterangepicker.css"; -// @import "../../../vendor/almasaeed2010/adminlte/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css"; \ No newline at end of file diff --git a/resources/assets/sass/app.scss b/resources/assets/sass/app.scss deleted file mode 100755 index ad83043..0000000 --- a/resources/assets/sass/app.scss +++ /dev/null @@ -1,42 +0,0 @@ -// Fonts -@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600"); -// Variables -@import "variables"; -// Bootstrap -@import "~bootstrap/scss/bootstrap"; -// Chat -@import "chat"; - -.navbar-laravel { - margin: 0; - padding: 0; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); -} - -.navbar.fixed-bottom { - width: 100%; - background-color: #555; - overflow: auto; -} - -.navbar.fixed-bottom .navbar-icon { - float: left; - width: 20%; - text-align: center; - padding: 12px 0; - transition: all 0.3s ease; - color: white; - font-size: 36px; -} - -.navbar.fixed-bottom a:hover { - background-color: #000; -} - -.active { - background-color: #4CAF50 !important; -} - -.alert { - display: none; -} \ No newline at end of file diff --git a/resources/assets/sass/chat.scss b/resources/assets/sass/chat.scss deleted file mode 100755 index 026d089..0000000 --- a/resources/assets/sass/chat.scss +++ /dev/null @@ -1,5 +0,0 @@ -.MessagesWindow { - height: 250px; - overflow-y: scroll; - padding: 15px; -} \ No newline at end of file diff --git a/resources/lang/en/auth.php b/resources/lang/en/auth.php deleted file mode 100755 index e5506df..0000000 --- a/resources/lang/en/auth.php +++ /dev/null @@ -1,19 +0,0 @@ - 'These credentials do not match our records.', - 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', - -]; diff --git a/resources/lang/en/pagination.php b/resources/lang/en/pagination.php deleted file mode 100755 index d481411..0000000 --- a/resources/lang/en/pagination.php +++ /dev/null @@ -1,19 +0,0 @@ - '« Previous', - 'next' => 'Next »', - -]; diff --git a/resources/lang/en/passwords.php b/resources/lang/en/passwords.php deleted file mode 100755 index e5544d2..0000000 --- a/resources/lang/en/passwords.php +++ /dev/null @@ -1,22 +0,0 @@ - 'Passwords must be at least six characters and match the confirmation.', - 'reset' => 'Your password has been reset!', - 'sent' => 'We have e-mailed your password reset link!', - 'token' => 'This password reset token is invalid.', - 'user' => "We can't find a user with that e-mail address.", - -]; diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php deleted file mode 100755 index b163c42..0000000 --- a/resources/lang/en/validation.php +++ /dev/null @@ -1,146 +0,0 @@ - 'The :attribute must be accepted.', - 'active_url' => 'The :attribute is not a valid URL.', - 'after' => 'The :attribute must be a date after :date.', - 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', - 'alpha' => 'The :attribute may only contain letters.', - 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', - 'alpha_num' => 'The :attribute may only contain letters and numbers.', - 'array' => 'The :attribute must be an array.', - 'before' => 'The :attribute must be a date before :date.', - 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', - 'between' => [ - 'numeric' => 'The :attribute must be between :min and :max.', - 'file' => 'The :attribute must be between :min and :max kilobytes.', - 'string' => 'The :attribute must be between :min and :max characters.', - 'array' => 'The :attribute must have between :min and :max items.', - ], - 'boolean' => 'The :attribute field must be true or false.', - 'confirmed' => 'The :attribute confirmation does not match.', - 'date' => 'The :attribute is not a valid date.', - 'date_format' => 'The :attribute does not match the format :format.', - 'different' => 'The :attribute and :other must be different.', - 'digits' => 'The :attribute must be :digits digits.', - 'digits_between' => 'The :attribute must be between :min and :max digits.', - 'dimensions' => 'The :attribute has invalid image dimensions.', - 'distinct' => 'The :attribute field has a duplicate value.', - 'email' => 'The :attribute must be a valid email address.', - 'exists' => 'The selected :attribute is invalid.', - 'file' => 'The :attribute must be a file.', - 'filled' => 'The :attribute field must have a value.', - 'gt' => [ - 'numeric' => 'The :attribute must be greater than :value.', - 'file' => 'The :attribute must be greater than :value kilobytes.', - 'string' => 'The :attribute must be greater than :value characters.', - 'array' => 'The :attribute must have more than :value items.', - ], - 'gte' => [ - 'numeric' => 'The :attribute must be greater than or equal :value.', - 'file' => 'The :attribute must be greater than or equal :value kilobytes.', - 'string' => 'The :attribute must be greater than or equal :value characters.', - 'array' => 'The :attribute must have :value items or more.', - ], - 'image' => 'The :attribute must be an image.', - 'in' => 'The selected :attribute is invalid.', - 'in_array' => 'The :attribute field does not exist in :other.', - 'integer' => 'The :attribute must be an integer.', - 'ip' => 'The :attribute must be a valid IP address.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', - 'json' => 'The :attribute must be a valid JSON string.', - 'lt' => [ - 'numeric' => 'The :attribute must be less than :value.', - 'file' => 'The :attribute must be less than :value kilobytes.', - 'string' => 'The :attribute must be less than :value characters.', - 'array' => 'The :attribute must have less than :value items.', - ], - 'lte' => [ - 'numeric' => 'The :attribute must be less than or equal :value.', - 'file' => 'The :attribute must be less than or equal :value kilobytes.', - 'string' => 'The :attribute must be less than or equal :value characters.', - 'array' => 'The :attribute must not have more than :value items.', - ], - 'max' => [ - 'numeric' => 'The :attribute may not be greater than :max.', - 'file' => 'The :attribute may not be greater than :max kilobytes.', - 'string' => 'The :attribute may not be greater than :max characters.', - 'array' => 'The :attribute may not have more than :max items.', - ], - 'mimes' => 'The :attribute must be a file of type: :values.', - 'mimetypes' => 'The :attribute must be a file of type: :values.', - 'min' => [ - 'numeric' => 'The :attribute must be at least :min.', - 'file' => 'The :attribute must be at least :min kilobytes.', - 'string' => 'The :attribute must be at least :min characters.', - 'array' => 'The :attribute must have at least :min items.', - ], - 'not_in' => 'The selected :attribute is invalid.', - 'not_regex' => 'The :attribute format is invalid.', - 'numeric' => 'The :attribute must be a number.', - 'present' => 'The :attribute field must be present.', - 'regex' => 'The :attribute format is invalid.', - 'required' => 'The :attribute field is required.', - 'required_if' => 'The :attribute field is required when :other is :value.', - 'required_unless' => 'The :attribute field is required unless :other is in :values.', - 'required_with' => 'The :attribute field is required when :values is present.', - 'required_with_all' => 'The :attribute field is required when :values is present.', - 'required_without' => 'The :attribute field is required when :values is not present.', - 'required_without_all' => 'The :attribute field is required when none of :values are present.', - 'same' => 'The :attribute and :other must match.', - 'size' => [ - 'numeric' => 'The :attribute must be :size.', - 'file' => 'The :attribute must be :size kilobytes.', - 'string' => 'The :attribute must be :size characters.', - 'array' => 'The :attribute must contain :size items.', - ], - 'string' => 'The :attribute must be a string.', - 'timezone' => 'The :attribute must be a valid zone.', - 'unique' => 'The :attribute has already been taken.', - 'uploaded' => 'The :attribute failed to upload.', - 'url' => 'The :attribute format is invalid.', - - /* - |-------------------------------------------------------------------------- - | Custom Validation Language Lines - |-------------------------------------------------------------------------- - | - | Here you may specify custom validation messages for attributes using the - | convention "attribute.rule" to name the lines. This makes it quick to - | specify a specific custom language line for a given attribute rule. - | - */ - - 'custom' => [ - 'attribute-name' => [ - 'rule-name' => 'custom-message', - ], - ], - - /* - |-------------------------------------------------------------------------- - | Custom Validation Attributes - |-------------------------------------------------------------------------- - | - | The following language lines are used to swap attribute place-holders - | with something more reader friendly such as E-Mail Address instead - | of "email". This simply helps us make messages a little cleaner. - | - */ - - 'attributes' => [], - -]; diff --git a/resources/views/admin/dashboard.blade.php b/resources/views/admin/dashboard.blade.php deleted file mode 100755 index b271a2d..0000000 --- a/resources/views/admin/dashboard.blade.php +++ /dev/null @@ -1,388 +0,0 @@ -@extends('admin.layouts.app') -@section('content_header') -

- Dashboard - Version 2.0 -

- -@endsection - -@section('content') - -
-
-
- - -
- CPU Traffic - {{ $cpu_load }}% -
- -
- -
- -
-
- - -
- Likes - 41,410 -
- -
- -
- - - -
- -
-
- - -
- Sales - 760 -
- -
- -
- -
-
- - -
- New Members - 2,000 -
- -
- -
- -
- - -
-
-
-
-

Monthly Recap Report

- - -
- -
-
-
-

- Sales: 1 Jan, 2014 - 30 Jul, 2014 -

- -
- - -
- -
- -
-

- Goal Completion -

- -
- Add Products to Cart - 160/200 - -
-
-
-
- -
- Complete Purchase - 310/400 - -
-
-
-
- -
- Visit Premium Page - 480/800 - -
-
-
-
- -
- Send Inquiries - 250/500 - -
-
-
-
- -
- -
- -
- - - -
- -
- -
- - - -
- -
- -
-
-

Visitors Report

- -
- - -
-
- -
-
-
-
- -
-
-
- -
-
-
-
90,70,90,70,75,80,70
-
8390
- Visits -
- -
-
90,50,90,70,61,83,63
-
30%
- Referrals -
- -
-
90,50,90,70,61,83,63
-
70%
- Organic -
- -
-
- -
- -
- -
- -
- - -
- -
- - -
- Inventory - 5,200 - -
-
-
- - 50% Increase in 30 Days - -
- -
- -
- - -
- Mentions - 92,050 - -
-
-
- - 20% Increase in 30 Days - -
- -
- -
- - -
- Downloads - 114,381 - -
-
-
- - 70% Increase in 30 Days - -
- -
- -
- - -
- Direct Messages - 163,921 - -
-
-
- - 40% Increase in 30 Days - -
- -
- - -
-
-

Browser Usage

- -
- - -
-
- -
-
-
-
- -
- -
- -
-
    -
  • Chrome
  • -
  • IE
  • -
  • FireFox
  • -
  • Safari
  • -
  • Opera
  • -
  • Navigator
  • -
-
- -
- -
- - - -
- -
- -
- -@endsection \ No newline at end of file diff --git a/resources/views/admin/layouts/app.blade.php b/resources/views/admin/layouts/app.blade.php deleted file mode 100755 index 2f7e48d..0000000 --- a/resources/views/admin/layouts/app.blade.php +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - Admin interface of BEAM-Messenger - - - - - - - -
- - @include('admin.layouts.navbar'); - - @include('admin.layouts.left_sidebar'); - -
-
- @yield('content_header') -
- -
- @yield('content') -
-
- - -
-
- - - - - - \ No newline at end of file diff --git a/resources/views/admin/layouts/left_sidebar.blade.php b/resources/views/admin/layouts/left_sidebar.blade.php deleted file mode 100644 index 3db3e38..0000000 --- a/resources/views/admin/layouts/left_sidebar.blade.php +++ /dev/null @@ -1,39 +0,0 @@ - \ No newline at end of file diff --git a/resources/views/admin/layouts/navbar.blade.php b/resources/views/admin/layouts/navbar.blade.php deleted file mode 100644 index e021129..0000000 --- a/resources/views/admin/layouts/navbar.blade.php +++ /dev/null @@ -1,44 +0,0 @@ -
- - - - -
\ No newline at end of file diff --git a/resources/views/admin/layouts/right_sidebar.blade.php b/resources/views/admin/layouts/right_sidebar.blade.php deleted file mode 100644 index 80ce125..0000000 --- a/resources/views/admin/layouts/right_sidebar.blade.php +++ /dev/null @@ -1,185 +0,0 @@ - - -
- -
-

Recent Activity

- - - -

Tasks Progress

- - - -
- - -
Stats Tab Content
- - -
-
-

General Settings

- -
- - -

- Some information about this general settings option -

-
- - -
- - -

- Other sets of options are available -

-
- - -
- - -

- Allow the user to show his name in blog posts -

-
- - -

Chat Settings

- -
- -
- - -
- -
- - -
- -
- -
-
- -
\ No newline at end of file diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php deleted file mode 100755 index 119cfe1..0000000 --- a/resources/views/auth/login.blade.php +++ /dev/null @@ -1,71 +0,0 @@ -@extends('layouts.app') - -@section('content') - - -
-
-
-
-
{{ __('Login') }}
- -
-
- @csrf - -
- - -
- - - @if ($errors->has('email')) - - {{ $errors->first('email') }} - - @endif -
-
- -
- - -
- - - @if ($errors->has('password')) - - {{ $errors->first('password') }} - - @endif -
-
- -
-
-
- -
-
-
- -
-
- - - - {{ __('Forgot Your Password?') }} - -
-
-
-
-
-
-
-
-@endsection diff --git a/resources/views/auth/passwords/email.blade.php b/resources/views/auth/passwords/email.blade.php deleted file mode 100755 index 12e8083..0000000 --- a/resources/views/auth/passwords/email.blade.php +++ /dev/null @@ -1,47 +0,0 @@ -@extends('layouts.app') - -@section('content') -
-
-
-
-
{{ __('Reset Password') }}
- -
- @if (session('status')) - - @endif - -
- @csrf - -
- - -
- - - @if ($errors->has('email')) - - {{ $errors->first('email') }} - - @endif -
-
- -
-
- -
-
-
-
-
-
-
-
-@endsection diff --git a/resources/views/auth/passwords/reset.blade.php b/resources/views/auth/passwords/reset.blade.php deleted file mode 100755 index 3557662..0000000 --- a/resources/views/auth/passwords/reset.blade.php +++ /dev/null @@ -1,65 +0,0 @@ -@extends('layouts.app') - -@section('content') -
-
-
-
-
{{ __('Reset Password') }}
- -
-
- @csrf - - - -
- - -
- - - @if ($errors->has('email')) - - {{ $errors->first('email') }} - - @endif -
-
- -
- - -
- - - @if ($errors->has('password')) - - {{ $errors->first('password') }} - - @endif -
-
- -
- - -
- -
-
- -
-
- -
-
-
-
-
-
-
-
-@endsection diff --git a/resources/views/auth/register.blade.php b/resources/views/auth/register.blade.php deleted file mode 100755 index 9b544ae..0000000 --- a/resources/views/auth/register.blade.php +++ /dev/null @@ -1,79 +0,0 @@ -@extends('layouts.app') - -@section('content') - - -
-
-
-
-
{{ __('Register') }}
- -
-
- @csrf - -
- - -
- - - @if ($errors->has('name')) - - {{ $errors->first('name') }} - - @endif -
-
- -
- - -
- - - @if ($errors->has('email')) - - {{ $errors->first('email') }} - - @endif -
-
- -
- - -
- - - @if ($errors->has('password')) - - {{ $errors->first('password') }} - - @endif -
-
- -
- - -
- -
-
- -
-
- -
-
-
-
-
-
-
-
-@endsection diff --git a/resources/views/confirmEmail.blade.php b/resources/views/confirmEmail.blade.php deleted file mode 100755 index 1de32c2..0000000 --- a/resources/views/confirmEmail.blade.php +++ /dev/null @@ -1,16 +0,0 @@ -@extends('layouts.app') @section('content') - -
-
-
-
-
Registration
-
- You have successfully registered. An email is sent to you for verification. -
-
-
-
-
- -@endsection \ No newline at end of file diff --git a/resources/views/email/verify.blade.php b/resources/views/email/verify.blade.php deleted file mode 100755 index 25eda64..0000000 --- a/resources/views/email/verify.blade.php +++ /dev/null @@ -1,3 +0,0 @@ -

Click the Link To Verify Your Email

- -Click the following link to verify your email {{url('/verify/email/'.$email_token)}} \ No newline at end of file diff --git a/resources/views/errors/http.blade.php b/resources/views/errors/http.blade.php deleted file mode 100755 index a05a725..0000000 --- a/resources/views/errors/http.blade.php +++ /dev/null @@ -1,5 +0,0 @@ -@extends('layouts.error') - -@section('title', $ErrorMessage) - -@section('message', $ErrorMessage) diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php deleted file mode 100755 index af1be47..0000000 --- a/resources/views/layouts/app.blade.php +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - {{ config('app.name', 'BEAM-Messenger') }} - - - - - - - - - - - - - - - - -
-
- @yield('content') -
-
- - - - {{ csrf_field() }} - - - - - \ No newline at end of file diff --git a/resources/views/layouts/error.blade.php b/resources/views/layouts/error.blade.php deleted file mode 100755 index 27513d0..0000000 --- a/resources/views/layouts/error.blade.php +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - @yield('title') - - - - - - - - -
-
-
- @yield('message') -
-
-
- - diff --git a/resources/views/profile.blade.php b/resources/views/profile.blade.php deleted file mode 100755 index c4a7db0..0000000 --- a/resources/views/profile.blade.php +++ /dev/null @@ -1,36 +0,0 @@ -@extends('layouts.app') @section('content') -
- -
-
- - -
-
- Whoops! There were some problems with your upload - please try again. -
-
- -
-
-
- - -
- {{$user->name}} -
-
-
-
- -
-
-
- - Please upload a valid image file. Size of image should not be more than 2MB. -
- -
-
-
-@endsection \ No newline at end of file diff --git a/resources/views/verificationSuccess.blade.php b/resources/views/verificationSuccess.blade.php deleted file mode 100755 index 5cc48eb..0000000 --- a/resources/views/verificationSuccess.blade.php +++ /dev/null @@ -1,17 +0,0 @@ -@extends('layouts.app') @section('content') - -
-
-
-
-
Registration Confirmed
-
- Your Email is verified. Click here to - login -
-
-
-
- - -@endsection \ No newline at end of file diff --git a/resources/views/writeMessage.blade.php b/resources/views/writeMessage.blade.php deleted file mode 100755 index 0136ba9..0000000 --- a/resources/views/writeMessage.blade.php +++ /dev/null @@ -1,33 +0,0 @@ -@extends('layouts.app') @section('content') - - - -
-
-
-
-
Messages Received
-
- @foreach ($messages as $key => $message) -

{{$message->name}}: {{$message->message}}

- @endforeach - -
-
-
-
-
-
-
-
Send message
-
- {{ csrf_field() }} - - -
-
-
-
-
- -@endsection -- cgit v1.2.3