3
0
Fork 0

Redesign + Fixes

This commit is contained in:
thomas 2021-06-29 22:05:00 +02:00
parent 7718ed6c32
commit 7fe8056e35
67 changed files with 1898 additions and 2799 deletions

View file

@ -1,27 +1,12 @@
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<!-- ==============================================
Title and Meta Tags
=============================================== -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>{{ config('app.name', 'Laravel') }}</title>
<!-- ==============================================
CSS Files
=============================================== -->
<link href="{{ asset('assets/css/bootstrap.min.css') }}" rel="stylesheet">
<link href="{{ asset('assets/css/panel.min.css') }}" rel="stylesheet">
</head>
<body>
@extends('layouts.default')
@section('body')
<div class="page">
<div class="form">
<form method="post" action="{{ route('register') }}">
@csrf
<h2 class="text-center">ThemePark</h2>
@component('components.title')
@endcomponent
@if($errors->any())
<div class="alert alert-danger" role="alert">
@ -55,25 +40,15 @@
</form>
</div>
</div>
@endsection
<footer class="footer">
<div class="container">
<span>Copyright &copy; 2019-{{ date('Y') }} <a href="https://www.iobyte.nl/"><img src="{{ asset('assets/img/logo-lg.png') }}" alt="IOByte" style="height: 20px"></a>. All Rights Reserved.</span>
</div>
</footer>
<!-- ==============================================
JS Files
=============================================== -->
<script src="{{ asset('assets/js/jquery.min.js') }}"></script>
<script src="{{ asset('assets/js/bootstrap.min.js') }}"></script>
@section('javascript')
<script>
window.onload = function() {
const passInput = document.getElementById('password_confirmation');
passInput.onpaste = function (e) {
e.preventDefault();
window.onload = () => {
const passInput = document.getElementById('password_confirmation');
passInput.onpaste = (e) => {
e.preventDefault();
};
};
};
</script>
</body>
</html>
@endsection