aboutsummaryrefslogtreecommitdiffhomepage
path: root/resources
diff options
context:
space:
mode:
Diffstat (limited to 'resources')
-rw-r--r--resources/assets/js/admin.js269
-rwxr-xr-xresources/assets/js/app.js13
-rwxr-xr-xresources/assets/js/bootstrap.js52
-rwxr-xr-xresources/assets/js/chat.js55
-rwxr-xr-xresources/assets/js/chatServer.js26
-rwxr-xr-xresources/assets/js/components/ExampleComponent.vue23
-rwxr-xr-xresources/assets/js/initial_key_gen.js30
-rwxr-xr-xresources/assets/js/profile.js39
-rwxr-xr-xresources/assets/js/setup.js5
-rwxr-xr-xresources/assets/sass/_variables.scss8
-rw-r--r--resources/assets/sass/admin.scss10
-rwxr-xr-xresources/assets/sass/app.scss42
-rwxr-xr-xresources/assets/sass/chat.scss5
-rwxr-xr-xresources/lang/en/auth.php19
-rwxr-xr-xresources/lang/en/pagination.php19
-rwxr-xr-xresources/lang/en/passwords.php22
-rwxr-xr-xresources/lang/en/validation.php146
-rwxr-xr-xresources/views/admin/dashboard.blade.php388
-rwxr-xr-xresources/views/admin/layouts/app.blade.php46
-rw-r--r--resources/views/admin/layouts/left_sidebar.blade.php39
-rw-r--r--resources/views/admin/layouts/navbar.blade.php44
-rw-r--r--resources/views/admin/layouts/right_sidebar.blade.php185
-rwxr-xr-xresources/views/auth/login.blade.php71
-rwxr-xr-xresources/views/auth/passwords/email.blade.php47
-rwxr-xr-xresources/views/auth/passwords/reset.blade.php65
-rwxr-xr-xresources/views/auth/register.blade.php79
-rwxr-xr-xresources/views/confirmEmail.blade.php16
-rwxr-xr-xresources/views/email/verify.blade.php3
-rwxr-xr-xresources/views/errors/http.blade.php5
-rwxr-xr-xresources/views/layouts/app.blade.php58
-rwxr-xr-xresources/views/layouts/error.blade.php57
-rwxr-xr-xresources/views/profile.blade.php36
-rwxr-xr-xresources/views/verificationSuccess.blade.php17
-rwxr-xr-xresources/views/writeMessage.blade.php33
34 files changed, 0 insertions, 1972 deletions
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: '<ul class=\'<%=name.toLowerCase()%>-legend\'><% for (var i=0; i<datasets.length; i++){%><li><span style=\'background-color:<%=datasets[i].lineColor%>\'></span><%=datasets[i].label%></li><%}%></ul>',
- 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: '<ul class=\'<%=name.toLowerCase()%>-legend\'><% for (var i=0; i<segments.length; i++){%><li><span style=\'background-color:<%=segments[i].fillColor%>\'></span><%if(segments[i].label){%><%=segments[i].label%><%}%></li><%}%></ul>',
- 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("<p>" + data.user + " : " + data.message + "</p>");
-});
-
-$('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 @@
-<template>
- <div class="container">
- <div class="row justify-content-center">
- <div class="col-md-8">
- <div class="card card-default">
- <div class="card-header">Example Component</div>
-
- <div class="card-body">
- I'm an example component.
- </div>
- </div>
- </div>
- </div>
- </div>
-</template>
-
-<script>
- export default {
- mounted() {
- console.log('Component mounted.')
- }
- }
-</script>
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 @@
-<?php
-
-return [
-
- /*
- |--------------------------------------------------------------------------
- | Authentication Language Lines
- |--------------------------------------------------------------------------
- |
- | The following language lines are used during authentication for various
- | messages that we need to display to the user. You are free to modify
- | these language lines according to your application's requirements.
- |
- */
-
- 'failed' => '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 @@
-<?php
-
-return [
-
- /*
- |--------------------------------------------------------------------------
- | Pagination Language Lines
- |--------------------------------------------------------------------------
- |
- | The following language lines are used by the paginator library to build
- | the simple pagination links. You are free to change them to anything
- | you want to customize your views to better match your application.
- |
- */
-
- 'previous' => '&laquo; Previous',
- 'next' => 'Next &raquo;',
-
-];
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 @@
-<?php
-
-return [
-
- /*
- |--------------------------------------------------------------------------
- | Password Reset Language Lines
- |--------------------------------------------------------------------------
- |
- | The following language lines are the default lines which match reasons
- | that are given by the password broker for a password update attempt
- | has failed, such as for an invalid token or invalid new password.
- |
- */
-
- 'password' => '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 @@
-<?php
-
-return [
-
- /*
- |--------------------------------------------------------------------------
- | Validation Language Lines
- |--------------------------------------------------------------------------
- |
- | The following language lines contain the default error messages used by
- | the validator class. Some of these rules have multiple versions such
- | as the size rules. Feel free to tweak each of these messages here.
- |
- */
-
- 'accepted' => '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')
-<h1>
- Dashboard
- <small>Version 2.0</small>
-</h1>
-<ol class="breadcrumb">
- <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
- <li class="active">Dashboard</li>
-</ol>
-@endsection
-
-@section('content')
-
-<div class="row">
- <div class="col-md-3 col-sm-6 col-xs-12">
- <div class="info-box">
- <span class="info-box-icon bg-aqua"><i class="ion ion-ios-gear-outline"></i></span>
-
- <div class="info-box-content">
- <span class="info-box-text">CPU Traffic</span>
- <span class="info-box-number">{{ $cpu_load }}<small>%</small></span>
- </div>
- <!-- /.info-box-content -->
- </div>
- <!-- /.info-box -->
- </div>
- <!-- /.col -->
- <div class="col-md-3 col-sm-6 col-xs-12">
- <div class="info-box">
- <span class="info-box-icon bg-red"><i class="fa fa-google-plus"></i></span>
-
- <div class="info-box-content">
- <span class="info-box-text">Likes</span>
- <span class="info-box-number">41,410</span>
- </div>
- <!-- /.info-box-content -->
- </div>
- <!-- /.info-box -->
- </div>
- <!-- /.col -->
-
- <!-- fix for small devices only -->
- <div class="clearfix visible-sm-block"></div>
-
- <div class="col-md-3 col-sm-6 col-xs-12">
- <div class="info-box">
- <span class="info-box-icon bg-green"><i class="ion ion-ios-cart-outline"></i></span>
-
- <div class="info-box-content">
- <span class="info-box-text">Sales</span>
- <span class="info-box-number">760</span>
- </div>
- <!-- /.info-box-content -->
- </div>
- <!-- /.info-box -->
- </div>
- <!-- /.col -->
- <div class="col-md-3 col-sm-6 col-xs-12">
- <div class="info-box">
- <span class="info-box-icon bg-yellow"><i class="ion ion-ios-people-outline"></i></span>
-
- <div class="info-box-content">
- <span class="info-box-text">New Members</span>
- <span class="info-box-number">2,000</span>
- </div>
- <!-- /.info-box-content -->
- </div>
- <!-- /.info-box -->
- </div>
- <!-- /.col -->
-</div>
-<!-- /.row -->
-
-<div class="row">
- <div class="col-md-12">
- <div class="box">
- <div class="box-header with-border">
- <h3 class="box-title">Monthly Recap Report</h3>
-
- <div class="box-tools pull-right">
- <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
- </button>
- <div class="btn-group">
- <button type="button" class="btn btn-box-tool dropdown-toggle" data-toggle="dropdown">
- <i class="fa fa-wrench"></i></button>
- <ul class="dropdown-menu" role="menu">
- <li><a href="#">Action</a></li>
- <li><a href="#">Another action</a></li>
- <li><a href="#">Something else here</a></li>
- <li class="divider"></li>
- <li><a href="#">Separated link</a></li>
- </ul>
- </div>
- <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
- </div>
- </div>
- <!-- /.box-header -->
- <div class="box-body">
- <div class="row">
- <div class="col-md-8">
- <p class="text-center">
- <strong>Sales: 1 Jan, 2014 - 30 Jul, 2014</strong>
- </p>
-
- <div class="chart">
- <!-- Sales Chart Canvas -->
- <canvas id="salesChart" style="height: 180px;"></canvas>
- </div>
- <!-- /.chart-responsive -->
- </div>
- <!-- /.col -->
- <div class="col-md-4">
- <p class="text-center">
- <strong>Goal Completion</strong>
- </p>
-
- <div class="progress-group">
- <span class="progress-text">Add Products to Cart</span>
- <span class="progress-number"><b>160</b>/200</span>
-
- <div class="progress sm">
- <div class="progress-bar progress-bar-aqua" style="width: 80%"></div>
- </div>
- </div>
- <!-- /.progress-group -->
- <div class="progress-group">
- <span class="progress-text">Complete Purchase</span>
- <span class="progress-number"><b>310</b>/400</span>
-
- <div class="progress sm">
- <div class="progress-bar progress-bar-red" style="width: 80%"></div>
- </div>
- </div>
- <!-- /.progress-group -->
- <div class="progress-group">
- <span class="progress-text">Visit Premium Page</span>
- <span class="progress-number"><b>480</b>/800</span>
-
- <div class="progress sm">
- <div class="progress-bar progress-bar-green" style="width: 80%"></div>
- </div>
- </div>
- <!-- /.progress-group -->
- <div class="progress-group">
- <span class="progress-text">Send Inquiries</span>
- <span class="progress-number"><b>250</b>/500</span>
-
- <div class="progress sm">
- <div class="progress-bar progress-bar-yellow" style="width: 80%"></div>
- </div>
- </div>
- <!-- /.progress-group -->
- </div>
- <!-- /.col -->
- </div>
- <!-- /.row -->
- </div>
- <!-- ./box-body -->
- <div class="box-footer">
- <div class="row">
- <div class="col-sm-3 col-xs-6">
- <div class="description-block border-right">
- <span class="description-percentage text-green"><i class="fa fa-caret-up"></i> 17%</span>
- <h5 class="description-header">$35,210.43</h5>
- <span class="description-text">TOTAL REVENUE</span>
- </div>
- <!-- /.description-block -->
- </div>
- <!-- /.col -->
- <div class="col-sm-3 col-xs-6">
- <div class="description-block border-right">
- <span class="description-percentage text-yellow"><i class="fa fa-caret-left"></i> 0%</span>
- <h5 class="description-header">$10,390.90</h5>
- <span class="description-text">TOTAL COST</span>
- </div>
- <!-- /.description-block -->
- </div>
- <!-- /.col -->
- <div class="col-sm-3 col-xs-6">
- <div class="description-block border-right">
- <span class="description-percentage text-green"><i class="fa fa-caret-up"></i> 20%</span>
- <h5 class="description-header">$24,813.53</h5>
- <span class="description-text">TOTAL PROFIT</span>
- </div>
- <!-- /.description-block -->
- </div>
- <!-- /.col -->
- <div class="col-sm-3 col-xs-6">
- <div class="description-block">
- <span class="description-percentage text-red"><i class="fa fa-caret-down"></i> 18%</span>
- <h5 class="description-header">1200</h5>
- <span class="description-text">GOAL COMPLETIONS</span>
- </div>
- <!-- /.description-block -->
- </div>
- </div>
- <!-- /.row -->
- </div>
- <!-- /.box-footer -->
- </div>
- <!-- /.box -->
- </div>
- <!-- /.col -->
-</div>
-<!-- /.row -->
-
-<!-- Main row -->
-<div class="row">
- <!-- Left col -->
- <div class="col-md-8">
- <!-- MAP & BOX PANE -->
- <div class="box box-success">
- <div class="box-header with-border">
- <h3 class="box-title">Visitors Report</h3>
-
- <div class="box-tools pull-right">
- <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
- </button>
- <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
- </div>
- </div>
- <!-- /.box-header -->
- <div class="box-body no-padding">
- <div class="row">
- <div class="col-md-9 col-sm-8">
- <div class="pad">
- <!-- Map will be created here -->
- <div id="world-map-markers" style="height: 325px;"></div>
- </div>
- </div>
- <!-- /.col -->
- <div class="col-md-3 col-sm-4">
- <div class="pad box-pane-right bg-green" style="min-height: 280px">
- <div class="description-block margin-bottom">
- <div class="sparkbar pad" data-color="#fff">90,70,90,70,75,80,70</div>
- <h5 class="description-header">8390</h5>
- <span class="description-text">Visits</span>
- </div>
- <!-- /.description-block -->
- <div class="description-block margin-bottom">
- <div class="sparkbar pad" data-color="#fff">90,50,90,70,61,83,63</div>
- <h5 class="description-header">30%</h5>
- <span class="description-text">Referrals</span>
- </div>
- <!-- /.description-block -->
- <div class="description-block">
- <div class="sparkbar pad" data-color="#fff">90,50,90,70,61,83,63</div>
- <h5 class="description-header">70%</h5>
- <span class="description-text">Organic</span>
- </div>
- <!-- /.description-block -->
- </div>
- </div>
- <!-- /.col -->
- </div>
- <!-- /.row -->
- </div>
- <!-- /.box-body -->
- </div>
- <!-- /.box -->
- </div>
- <!-- /.col -->
-
- <div class="col-md-4">
- <!-- Info Boxes Style 2 -->
- <div class="info-box bg-yellow">
- <span class="info-box-icon"><i class="ion ion-ios-pricetag-outline"></i></span>
-
- <div class="info-box-content">
- <span class="info-box-text">Inventory</span>
- <span class="info-box-number">5,200</span>
-
- <div class="progress">
- <div class="progress-bar" style="width: 50%"></div>
- </div>
- <span class="progress-description">
- 50% Increase in 30 Days
- </span>
- </div>
- <!-- /.info-box-content -->
- </div>
- <!-- /.info-box -->
- <div class="info-box bg-green">
- <span class="info-box-icon"><i class="ion ion-ios-heart-outline"></i></span>
-
- <div class="info-box-content">
- <span class="info-box-text">Mentions</span>
- <span class="info-box-number">92,050</span>
-
- <div class="progress">
- <div class="progress-bar" style="width: 20%"></div>
- </div>
- <span class="progress-description">
- 20% Increase in 30 Days
- </span>
- </div>
- <!-- /.info-box-content -->
- </div>
- <!-- /.info-box -->
- <div class="info-box bg-red">
- <span class="info-box-icon"><i class="ion ion-ios-cloud-download-outline"></i></span>
-
- <div class="info-box-content">
- <span class="info-box-text">Downloads</span>
- <span class="info-box-number">114,381</span>
-
- <div class="progress">
- <div class="progress-bar" style="width: 70%"></div>
- </div>
- <span class="progress-description">
- 70% Increase in 30 Days
- </span>
- </div>
- <!-- /.info-box-content -->
- </div>
- <!-- /.info-box -->
- <div class="info-box bg-aqua">
- <span class="info-box-icon"><i class="ion-ios-chatbubble-outline"></i></span>
-
- <div class="info-box-content">
- <span class="info-box-text">Direct Messages</span>
- <span class="info-box-number">163,921</span>
-
- <div class="progress">
- <div class="progress-bar" style="width: 40%"></div>
- </div>
- <span class="progress-description">
- 40% Increase in 30 Days
- </span>
- </div>
- <!-- /.info-box-content -->
- </div>
- <!-- /.info-box -->
-
- <div class="box box-default">
- <div class="box-header with-border">
- <h3 class="box-title">Browser Usage</h3>
-
- <div class="box-tools pull-right">
- <button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
- </button>
- <button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
- </div>
- </div>
- <!-- /.box-header -->
- <div class="box-body">
- <div class="row">
- <div class="col-md-8">
- <div class="chart-responsive">
- <canvas id="pieChart" height="150"></canvas>
- </div>
- <!-- ./chart-responsive -->
- </div>
- <!-- /.col -->
- <div class="col-md-4">
- <ul class="chart-legend clearfix">
- <li><i class="fa fa-circle-o text-red"></i> Chrome</li>
- <li><i class="fa fa-circle-o text-green"></i> IE</li>
- <li><i class="fa fa-circle-o text-yellow"></i> FireFox</li>
- <li><i class="fa fa-circle-o text-aqua"></i> Safari</li>
- <li><i class="fa fa-circle-o text-light-blue"></i> Opera</li>
- <li><i class="fa fa-circle-o text-gray"></i> Navigator</li>
- </ul>
- </div>
- <!-- /.col -->
- </div>
- <!-- /.row -->
- </div>
- <!-- /.box-body -->
- <div class="box-footer no-padding">
- <ul class="nav nav-pills nav-stacked">
- <li><a href="#">United States of America
- <span class="pull-right text-red"><i class="fa fa-angle-down"></i> 12%</span></a></li>
- <li><a href="#">India <span class="pull-right text-green"><i class="fa fa-angle-up"></i> 4%</span></a>
- </li>
- <li><a href="#">China
- <span class="pull-right text-yellow"><i class="fa fa-angle-left"></i> 0%</span></a></li>
- </ul>
- </div>
- <!-- /.footer -->
- </div>
- <!-- /.box -->
- </div>
- <!-- /.col -->
-</div>
-<!-- /.row -->
-@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 @@
-<!DOCTYPE html>
-<html lang="en">
-
-<head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
- <title>Admin interface of BEAM-Messenger</title>
-
- <link href="{{ asset("css/admin.css ") }}" rel="stylesheet" type="text/css" />
- <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic" rel="stylesheet">
- <!--[if lt IE 9]>
- <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
- <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
- <![endif]-->
-</head>
-
-<body class="hold-transition skin-blue sidebar-mini fixed sidebar-collapse">
- <div class="wrapper">
-
- @include('admin.layouts.navbar');
-
- @include('admin.layouts.left_sidebar');
-
- <div class="content-wrapper">
- <section class="content-header">
- @yield('content_header')
- </section>
-
- <section class="content">
- @yield('content')
- </section>
- </div>
-
- <aside class="control-sidebar control-sidebar-dark">
- @include('admin.layouts.right_sidebar')
- </aside>
- <div class="control-sidebar-bg"></div>
- </div>
-
- <script src="{{ asset("js/admin.js ") }}"></script>
- <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js" integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU="
- crossorigin="anonymous"></script>
-</body>
-
-</html> \ 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 @@
-<aside class="main-sidebar">
- <!-- sidebar: style can be found in sidebar.less -->
- <section class="sidebar">
- <!-- Sidebar user panel -->
- <div class="user-panel">
- <div class="pull-left image">
- <img src="/avatar/{{ $user->avatar }}" class="img-circle" alt="User Image">
- </div>
- <div class="pull-left info">
- <p>{{ $user->name }}</p>
- <a href="#"><i class="fa fa-circle text-success"></i> Online</a>
- </div>
- </div>
- <!-- search form -->
- <form action="#" method="get" class="sidebar-form">
- <div class="input-group">
- <input type="text" name="q" class="form-control" placeholder="Search...">
- <span class="input-group-btn">
- <button type="submit" name="search" id="search-btn" class="btn btn-flat">
- <i class="fa fa-search"></i>
- </button>
- </span>
- </div>
- </form>
- <!-- /.search form -->
- <!-- sidebar menu: : style can be found in sidebar.less -->
- <ul class="sidebar-menu" data-widget="tree">
- <li class="header">NAVIGATION</li>
-
- <li class="active treeview menu-open">
- <a href="/admin">
- <i class="fa fa-dashboard"></i> <span>Dashboard</span>
- </a>
- </li>
-
- </ul>
- </section>
- <!-- /.sidebar -->
-</aside> \ 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 @@
-<header class="main-header">
-
- <a href="/" class="logo">
- <span class="logo-mini"><b>B</b>M</span>
- <span class="logo-lg"><b>BEAM</b>-Messenger</span>
- </a>
-
- <nav class="navbar navbar-static-top">
- <a href="#" class="sidebar-toggle" data-toggle="push-menu" role="button">
- <span class="sr-only">Toggle navigation</span>
- </a>
- <div class="navbar-custom-menu">
- <ul class="nav navbar-nav">
- <li class="dropdown user user-menu">
- <a href="#" class="dropdown-toggle" data-toggle="dropdown">
- <img src="/avatar/{{ $user->id }}" class="user-image" alt="User Image">
- <span class="hidden-xs">{{ $user->name }}</span>
- </a>
- <ul class="dropdown-menu">
- <li class="user-header">
- <img src="/avatar/{{ $user->id }}" class="img-circle" alt="User Image">
- <p>
- {{ $user->name }} - {{ $user->email }}
- <small>Member since {{ $user->created_at !== null ? $user->created_at : "ever." }}</small>
- </p>
- </li>
- <li class="user-footer">
- <div class="pull-left">
- <a href="/profile" class="btn btn-default btn-flat">Profile</a>
- </div>
- <div class="pull-right">
- <a href="/logout" class="btn btn-default btn-flat">Sign out</a>
- </div>
- </li>
- </ul>
- </li>
- <li>
- <a href="#" data-toggle="control-sidebar"><i class="fa fa-gears"></i></a>
- </li>
- </ul>
- </div>
-
- </nav>
-</header> \ 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 @@
-<ul class="nav nav-tabs nav-justified control-sidebar-tabs">
- <li><a href="#control-sidebar-home-tab" data-toggle="tab"><i class="fa fa-home"></i></a></li>
- <li><a href="#control-sidebar-settings-tab" data-toggle="tab"><i class="fa fa-gears"></i></a></li>
-</ul>
-<!-- Tab panes -->
-<div class="tab-content">
- <!-- Home tab content -->
- <div class="tab-pane" id="control-sidebar-home-tab">
- <h3 class="control-sidebar-heading">Recent Activity</h3>
- <ul class="control-sidebar-menu">
- <li>
- <a href="javascript:void(0)">
- <i class="menu-icon fa fa-birthday-cake bg-red"></i>
-
- <div class="menu-info">
- <h4 class="control-sidebar-subheading">Langdon's Birthday</h4>
-
- <p>Will be 23 on April 24th</p>
- </div>
- </a>
- </li>
- <li>
- <a href="javascript:void(0)">
- <i class="menu-icon fa fa-user bg-yellow"></i>
-
- <div class="menu-info">
- <h4 class="control-sidebar-subheading">Frodo Updated His Profile</h4>
-
- <p>New phone +1(800)555-1234</p>
- </div>
- </a>
- </li>
- <li>
- <a href="javascript:void(0)">
- <i class="menu-icon fa fa-envelope-o bg-light-blue"></i>
-
- <div class="menu-info">
- <h4 class="control-sidebar-subheading">Nora Joined Mailing List</h4>
-
- <p>nora@example.com</p>
- </div>
- </a>
- </li>
- <li>
- <a href="javascript:void(0)">
- <i class="menu-icon fa fa-file-code-o bg-green"></i>
-
- <div class="menu-info">
- <h4 class="control-sidebar-subheading">Cron Job 254 Executed</h4>
-
- <p>Execution time 5 seconds</p>
- </div>
- </a>
- </li>
- </ul>
- <!-- /.control-sidebar-menu -->
-
- <h3 class="control-sidebar-heading">Tasks Progress</h3>
- <ul class="control-sidebar-menu">
- <li>
- <a href="javascript:void(0)">
- <h4 class="control-sidebar-subheading">
- Custom Template Design
- <span class="label label-danger pull-right">70%</span>
- </h4>
-
- <div class="progress progress-xxs">
- <div class="progress-bar progress-bar-danger" style="width: 70%"></div>
- </div>
- </a>
- </li>
- <li>
- <a href="javascript:void(0)">
- <h4 class="control-sidebar-subheading">
- Update Resume
- <span class="label label-success pull-right">95%</span>
- </h4>
-
- <div class="progress progress-xxs">
- <div class="progress-bar progress-bar-success" style="width: 95%"></div>
- </div>
- </a>
- </li>
- <li>
- <a href="javascript:void(0)">
- <h4 class="control-sidebar-subheading">
- Laravel Integration
- <span class="label label-warning pull-right">50%</span>
- </h4>
-
- <div class="progress progress-xxs">
- <div class="progress-bar progress-bar-warning" style="width: 50%"></div>
- </div>
- </a>
- </li>
- <li>
- <a href="javascript:void(0)">
- <h4 class="control-sidebar-subheading">
- Back End Framework
- <span class="label label-primary pull-right">68%</span>
- </h4>
-
- <div class="progress progress-xxs">
- <div class="progress-bar progress-bar-primary" style="width: 68%"></div>
- </div>
- </a>
- </li>
- </ul>
- <!-- /.control-sidebar-menu -->
-
- </div>
- <!-- /.tab-pane -->
- <!-- Stats tab content -->
- <div class="tab-pane" id="control-sidebar-stats-tab">Stats Tab Content</div>
- <!-- /.tab-pane -->
- <!-- Settings tab content -->
- <div class="tab-pane" id="control-sidebar-settings-tab">
- <form method="post">
- <h3 class="control-sidebar-heading">General Settings</h3>
-
- <div class="form-group">
- <label class="control-sidebar-subheading">
- Report panel usage
- <input type="checkbox" class="pull-right" checked>
- </label>
-
- <p>
- Some information about this general settings option
- </p>
- </div>
- <!-- /.form-group -->
-
- <div class="form-group">
- <label class="control-sidebar-subheading">
- Allow mail redirect
- <input type="checkbox" class="pull-right" checked>
- </label>
-
- <p>
- Other sets of options are available
- </p>
- </div>
- <!-- /.form-group -->
-
- <div class="form-group">
- <label class="control-sidebar-subheading">
- Expose author name in posts
- <input type="checkbox" class="pull-right" checked>
- </label>
-
- <p>
- Allow the user to show his name in blog posts
- </p>
- </div>
- <!-- /.form-group -->
-
- <h3 class="control-sidebar-heading">Chat Settings</h3>
-
- <div class="form-group">
- <label class="control-sidebar-subheading">
- Show me as online
- <input type="checkbox" class="pull-right" checked>
- </label>
- </div>
- <!-- /.form-group -->
-
- <div class="form-group">
- <label class="control-sidebar-subheading">
- Turn off notifications
- <input type="checkbox" class="pull-right">
- </label>
- </div>
- <!-- /.form-group -->
-
- <div class="form-group">
- <label class="control-sidebar-subheading">
- Delete chat history
- <a href="javascript:void(0)" class="text-red pull-right"><i class="fa fa-trash-o"></i></a>
- </label>
- </div>
- <!-- /.form-group -->
- </form>
- </div>
- <!-- /.tab-pane -->
-</div> \ 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')
-<script src="{{ asset('js/initial_key_gen.js') }}" defer></script>
-
-<div class="container">
- <div class="row justify-content-center">
- <div class="col-md-8">
- <div class="card">
- <div class="card-header">{{ __('Login') }}</div>
-
- <div class="card-body">
- <form keygen method="POST" action="{{ route('login') }}" aria-label="{{ __('Login') }}">
- @csrf
-
- <div class="form-group row">
- <label for="email" class="col-sm-4 col-form-label text-md-right">{{ __('E-Mail Address') }}</label>
-
- <div class="col-md-6">
- <input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ old('email') }}" required autofocus>
-
- @if ($errors->has('email'))
- <span class="invalid-feedback" role="alert">
- <strong>{{ $errors->first('email') }}</strong>
- </span>
- @endif
- </div>
- </div>
-
- <div class="form-group row">
- <label for="password" class="col-md-4 col-form-label text-md-right">{{ __('Password') }}</label>
-
- <div class="col-md-6">
- <input id="password" type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" required>
-
- @if ($errors->has('password'))
- <span class="invalid-feedback" role="alert">
- <strong>{{ $errors->first('password') }}</strong>
- </span>
- @endif
- </div>
- </div>
-
- <div class="form-group row">
- <div class="col-md-6 offset-md-4">
- <div class="checkbox">
- <label>
- <input type="checkbox" name="remember" {{ old('remember') ? 'checked' : '' }}> {{ __('Remember Me') }}
- </label>
- </div>
- </div>
- </div>
-
- <div class="form-group row mb-0">
- <div class="col-md-8 offset-md-4">
- <button type="submit" class="btn btn-primary">
- {{ __('Login') }}
- </button>
-
- <a class="btn btn-link" href="{{ route('password.request') }}">
- {{ __('Forgot Your Password?') }}
- </a>
- </div>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
-</div>
-@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')
-<div class="container">
- <div class="row justify-content-center">
- <div class="col-md-8">
- <div class="card">
- <div class="card-header">{{ __('Reset Password') }}</div>
-
- <div class="card-body">
- @if (session('status'))
- <div class="alert alert-success" role="alert">
- {{ session('status') }}
- </div>
- @endif
-
- <form method="POST" action="{{ route('password.email') }}" aria-label="{{ __('Reset Password') }}">
- @csrf
-
- <div class="form-group row">
- <label for="email" class="col-md-4 col-form-label text-md-right">{{ __('E-Mail Address') }}</label>
-
- <div class="col-md-6">
- <input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ old('email') }}" required>
-
- @if ($errors->has('email'))
- <span class="invalid-feedback" role="alert">
- <strong>{{ $errors->first('email') }}</strong>
- </span>
- @endif
- </div>
- </div>
-
- <div class="form-group row mb-0">
- <div class="col-md-6 offset-md-4">
- <button type="submit" class="btn btn-primary">
- {{ __('Send Password Reset Link') }}
- </button>
- </div>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
-</div>
-@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')
-<div class="container">
- <div class="row justify-content-center">
- <div class="col-md-8">
- <div class="card">
- <div class="card-header">{{ __('Reset Password') }}</div>
-
- <div class="card-body">
- <form method="POST" action="{{ route('password.request') }}" aria-label="{{ __('Reset Password') }}">
- @csrf
-
- <input type="hidden" name="token" value="{{ $token }}">
-
- <div class="form-group row">
- <label for="email" class="col-md-4 col-form-label text-md-right">{{ __('E-Mail Address') }}</label>
-
- <div class="col-md-6">
- <input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ $email ?? old('email') }}" required autofocus>
-
- @if ($errors->has('email'))
- <span class="invalid-feedback" role="alert">
- <strong>{{ $errors->first('email') }}</strong>
- </span>
- @endif
- </div>
- </div>
-
- <div class="form-group row">
- <label for="password" class="col-md-4 col-form-label text-md-right">{{ __('Password') }}</label>
-
- <div class="col-md-6">
- <input id="password" type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" required>
-
- @if ($errors->has('password'))
- <span class="invalid-feedback" role="alert">
- <strong>{{ $errors->first('password') }}</strong>
- </span>
- @endif
- </div>
- </div>
-
- <div class="form-group row">
- <label for="password-confirm" class="col-md-4 col-form-label text-md-right">{{ __('Confirm Password') }}</label>
-
- <div class="col-md-6">
- <input id="password-confirm" type="password" class="form-control" name="password_confirmation" required>
- </div>
- </div>
-
- <div class="form-group row mb-0">
- <div class="col-md-6 offset-md-4">
- <button type="submit" class="btn btn-primary">
- {{ __('Reset Password') }}
- </button>
- </div>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
-</div>
-@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')
-<script src="{{ asset('js/initial_key_gen.js') }}" defer></script>
-
-<div class="container">
- <div class="row justify-content-center">
- <div class="col-md-8">
- <div class="card">
- <div class="card-header">{{ __('Register') }}</div>
-
- <div class="card-body">
- <form keygen method="POST" action="{{ route('register') }}" aria-label="{{ __('Register') }}">
- @csrf
-
- <div class="form-group row">
- <label for="name" class="col-md-4 col-form-label text-md-right">{{ __('Name') }}</label>
-
- <div class="col-md-6">
- <input id="name" type="text" class="form-control{{ $errors->has('name') ? ' is-invalid' : '' }}" name="name" value="{{ old('name') }}" required autofocus>
-
- @if ($errors->has('name'))
- <span class="invalid-feedback" role="alert">
- <strong>{{ $errors->first('name') }}</strong>
- </span>
- @endif
- </div>
- </div>
-
- <div class="form-group row">
- <label for="email" class="col-md-4 col-form-label text-md-right">{{ __('E-Mail Address') }}</label>
-
- <div class="col-md-6">
- <input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ old('email') }}" required>
-
- @if ($errors->has('email'))
- <span class="invalid-feedback" role="alert">
- <strong>{{ $errors->first('email') }}</strong>
- </span>
- @endif
- </div>
- </div>
-
- <div class="form-group row">
- <label for="password" class="col-md-4 col-form-label text-md-right">{{ __('Password') }}</label>
-
- <div class="col-md-6">
- <input id="password" type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" required>
-
- @if ($errors->has('password'))
- <span class="invalid-feedback" role="alert">
- <strong>{{ $errors->first('password') }}</strong>
- </span>
- @endif
- </div>
- </div>
-
- <div class="form-group row">
- <label for="password-confirm" class="col-md-4 col-form-label text-md-right">{{ __('Confirm Password') }}</label>
-
- <div class="col-md-6">
- <input id="password-confirm" type="password" class="form-control" name="password_confirmation" required>
- </div>
- </div>
-
- <div class="form-group row mb-0">
- <div class="col-md-6 offset-md-4">
- <button type="submit" class="btn btn-primary">
- {{ __('Register') }}
- </button>
- </div>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
-</div>
-@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')
-
-<div class="container">
- <div class="row">
- <div class="col-md-8 col-md-offset-2">
- <div class="panel panel-default">
- <div class="panel-heading">Registration</div>
- <div class="panel-body">
- You have successfully registered. An email is sent to you for verification.
- </div>
- </div>
- </div>
- </div>
-</div>
-
-@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 @@
-<h1>Click the Link To Verify Your Email</h1>
-
-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 @@
-<!DOCTYPE html>
-<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
-
-<head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
-
- <!-- CSRF Token -->
- <meta name="csrf-token" content="{{ csrf_token() }}">
-
- <title>{{ config('app.name', 'BEAM-Messenger') }}</title>
-
- <!-- Scripts -->
- <script src="{{ asset('js/app.js') }}" defer></script>
-
- <!-- Fonts -->
- <link rel="dns-prefetch" href="https://fonts.gstatic.com">
- <link href="https://fonts.googleapis.com/css?family=Raleway:300,400,600" rel="stylesheet" type="text/css">
-
- <!-- Styles -->
- <link href="{{ asset('css/app.css') }}" rel="stylesheet">
-
- <!-- Manifests -->
- <link rel="manifest" href="/manifest.json">
-</head>
-
-<body>
- <div id="app">
- <main class="py-4">
- @yield('content')
- </main>
- </div>
-
- <nav class="navbar fixed-bottom navbar-expand-md navbar-light navbar-laravel">
- <span class="navbar-icon active"><i class="fas fa-home"></i></span>
- <span class="navbar-icon"><i class="fas fa-search"></i></span>
- <span class="navbar-icon"><i class="far fa-comments"></i></span>
- <span class="navbar-icon"><i class="far fa-heart"></i></span>
- <span class="navbar-icon"><i class="far fa-user"></i></span>
- </nav>
-
- {{ csrf_field() }}
-
- <script>
- if ('serviceWorker' in navigator) {
- window.addEventListener("load", function(){
- navigator.serviceWorker.register('service-worker.js').then(function (registration) {
- console.log('ServiceWorker registration successful with scope:', registration.scope);
- }, function (err) {
- console.log('ServiceWorker failed:', err);
- });
- });
- }
- </script>
-</body>
-
-</html> \ 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 @@
-<!DOCTYPE html>
-<html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
-
- <title>@yield('title')</title>
-
- <!-- Fonts -->
- <link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
-
- <!-- Styles -->
- <style>
- html, body {
- background-color: #fff;
- color: #636b6f;
- font-family: 'Raleway', sans-serif;
- font-weight: 100;
- height: 100vh;
- margin: 0;
- }
-
- .full-height {
- height: 100vh;
- }
-
- .flex-center {
- align-items: center;
- display: flex;
- justify-content: center;
- }
-
- .position-ref {
- position: relative;
- }
-
- .content {
- text-align: center;
- }
-
- .title {
- font-size: 36px;
- padding: 20px;
- }
- </style>
- </head>
- <body>
- <div class="flex-center position-ref full-height">
- <div class="content">
- <div class="title">
- @yield('message')
- </div>
- </div>
- </div>
- </body>
-</html>
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')
-<div class="container">
-
- <div class="row">
- <div id="avatarUploadSucceededAlert" class="alert alert-success alert-block">
- <button type="button" class="close" data-dismiss="alert">×</button>
- <strong id="avatarUploadSucceededMessage"></strong>
- </div>
- <div id="avatarUploadFailedAlert" class="alert alert-danger">
- <strong>Whoops!</strong> There were some problems with your upload - please try again.
- </div>
- </div>
-
- <div class="row justify-content-center">
- <div class="profile-header-container">
- <div class="profile-header-img">
- <img id="image-preview" height="100px" width="100px" class="rounded-circle" src="/avatar/{{ $user->id }}" />
- <!-- badge -->
- <div class="rank-label-container">
- <span class="label label-default rank-label">{{$user->name}}</span>
- </div>
- </div>
- </div>
- </div>
-
- <div class="row justify-content-center">
- <form id="avatarForm">
- <div class="form-group">
- <input type="file" class="form-control-file" name="avatar" id="avatarFile" aria-describedby="fileHelp">
- <small id="fileHelp" class="form-text text-muted">Please upload a valid image file. Size of image should not be more than 2MB.</small>
- </div>
- <button type="submit" class="btn btn-primary">Submit</button>
- </form>
- </div>
-</div>
-@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')
-
-<div class="container">
- <div class="row">
- <div class="col-md-8 col-md-offset-2">
- <div class="panel panel-default"></div>
- <div class="panel-heading">Registration Confirmed</div>
- <div class="panel-body">
- Your Email is verified. Click here to
- <a href="{{url('/login')}}">login</a>
- </div>
- </div>
- </div>
-</div>
-</div>
-
-@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')
-
-<script src="https://cdn.socket.io/socket.io-1.3.4.js"></script>
-
-<div class="container">
- <div class="row">
- <div class="col-lg-8 col-lg-offset-2">
- <div class="panel panel-default">
- <div class="panel-heading">Messages Received</div>
- <div id="messages" class="MessagesWindow">
- @foreach ($messages as $key => $message)
- <p>{{$message->name}}: {{$message->message}}</p>
- @endforeach
-
- </div>
- </div>
- </div>
- </div>
- <div class="row">
- <div class="col-md-10 col-md-offset-1">
- <div class="panel panel-default">
- <div class="panel-heading">Send message</div>
- <form action="sendmessage" method="POST">
- {{ csrf_field() }}
- <input type="text" name="message" class="message">
- <input type="submit" value="send" class="send">
- </form>
- </div>
- </div>
- </div>
-</div>
-
-@endsection