updated ide landing
This commit is contained in:
parent
32d23e8e20
commit
af044a77f3
|
|
@ -1,17 +1,24 @@
|
|||
@extends('layouts.ide')
|
||||
@section('title')
|
||||
<title>{{ env('APP_NAME') }}</title>
|
||||
<title>Start Page</title>
|
||||
@endsection
|
||||
@section('titlediscord')
|
||||
<meta content="{{env('APP_NAME')}}" property="og:title" />
|
||||
<meta content="Start Page - {{env('APP_NAME')}}" property="og:title" />
|
||||
@endsection
|
||||
@section('descdiscord')
|
||||
<meta content="ARCHBLOX" property="og:description" />
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<h1>My Games</h1>
|
||||
<button class="greenbutton">Create a Game (disabled)</button>
|
||||
<p>This page does not have any functionality yet other than logging in.</p>
|
||||
<p>Please press the New button in order to create a place to host.</p>
|
||||
@guest
|
||||
<p>Please <a href="{{ route('login') }}">Log In</a> to continue.</p>
|
||||
@else
|
||||
<h1>Welcome, {{ Auth::user()->name }}</h1>
|
||||
<!--
|
||||
<h1>My Games</h1>
|
||||
<button class="greenbutton">Create a Game (disabled)</button>
|
||||
-->
|
||||
<p>This page does not have any functionality yet other than logging in.</p>
|
||||
<p>Please press the New button in order to create a place to host.</p>
|
||||
@endguest
|
||||
@endsection
|
||||
|
|
@ -24,18 +24,18 @@
|
|||
<div class="iphone-sidebar">
|
||||
<p><img src="https://archblox.com/img/MORBLOXlogo.png" width="50%"> Studio</p>
|
||||
@guest
|
||||
<a href="{{ route('login') }}">Log In</a>
|
||||
<a href="{{ route('login') }}">Log In</a>
|
||||
@else
|
||||
<p class="nonbolded">{{ Auth::user()->name }}<p>
|
||||
@endguest
|
||||
<br>
|
||||
<a style="color: blue;" href="#">My Games</a>
|
||||
<br>
|
||||
<a style="color: black;" href="#">My Assets</a>
|
||||
<p class="nonbolded">{{ Auth::user()->name }}</p>
|
||||
<br>
|
||||
<a style="color: blue;" href="#">My Games</a>
|
||||
<br>
|
||||
<a style="color: white;" href="#">My Assets</a>
|
||||
@endguest
|
||||
</div>
|
||||
<div class="iphone-content">
|
||||
@yield('content')
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
Loading…
Reference in New Issue