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>
@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>
@guest
<a style="color: #000" href="{{ route('login') }}">Log In</a>
<a href="{{ route('login') }}">Log In</a>
@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') }}"
onclick="event.preventDefault();
document.getElementById('logout-form').submit();">Log
@ -40,8 +40,7 @@
<br>
<a style="color: black;" href="#">My Assets</a>
</div>
<div class="iphone-content"
style="padding-left: 5px; padding-right: 0px; overflow-x: hidden; position: fixed; height: 100%; color: #000000; background-color: #aaaaaa">
<div class="iphone-content">
@yield('content')
</div>
</body>