Update ide.blade.php

This commit is contained in:
Thomas G 2022-07-15 20:39:15 +10:00
parent c1f426c74c
commit 872bd98627
1 changed files with 4 additions and 5 deletions

View File

@ -21,12 +21,12 @@
<body> <body>
@yield('alert') @yield('alert')
<div class="iphone-sidebar" style="color: #000000; background-color: #ffffff"> <div class="iphone-sidebar">
<p><img src="https://archblox.com/img/MORBLOXlogo.png" width="50%"> Studio</p> <p><img src="https://archblox.com/img/MORBLOXlogo.png" width="50%"> Studio</p>
@guest @guest
<a style="color: #000" href="{{ route('login') }}">Log In</a> <a href="{{ route('login') }}">Log In</a>
@else @else
<p style="color: #000" id="navbarusername">{{ Auth::user()->name }} | <a style="color: #000" <p class="nonbolded" id="navbarusername">{{ Auth::user()->name }} | <a
href="{{ route('logout') }}" href="{{ route('logout') }}"
onclick="event.preventDefault(); onclick="event.preventDefault();
document.getElementById('logout-form').submit();">Log document.getElementById('logout-form').submit();">Log
@ -40,8 +40,7 @@
<br> <br>
<a style="color: black;" href="#">My Assets</a> <a style="color: black;" href="#">My Assets</a>
</div> </div>
<div class="iphone-content" <div class="iphone-content">
style="padding-left: 5px; padding-right: 0px; overflow-x: hidden; position: fixed; height: 100%; color: #000000; background-color: #aaaaaa">
@yield('content') @yield('content')
</div> </div>
</body> </body>