-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from khasyah-fr/master
Todo: Quiz and Task page for student and teacher
- Loading branch information
Showing
21 changed files
with
587 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
@extends('layouts.app') | ||
|
||
@section('content') | ||
|
||
<div class="grid" style="grid-template-columns: 1fr 4fr 1fr;"> | ||
<div class="h-screen bg-white pt-6"> | ||
<div class="mb-12"> | ||
<img src="{{asset('img/logo.PNG')}}" alt="Klass" style="height: 55px;" class="mx-auto"> | ||
</div> | ||
|
||
@yield('nav') | ||
|
||
</div> | ||
<div class="bg-gray-100 pt-7"> | ||
|
||
@yield('maincontent') | ||
|
||
</div> | ||
<div class="h-screen bg-white pt-6"> | ||
<div class="mb-6 text-black text-base text-center"> | ||
<a href="#">{{ auth()->guard('student')->user()->name }}</a> | ||
<button class="px-1 pb-1 bg-red-500 text-white rounded hover:bg-red-600 ml-6"> | ||
<a href="#" class="text-xs">Logout</a> | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
@endsection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
@extends('layouts.app') | ||
|
||
@section('content') | ||
|
||
<div class="grid" style="grid-template-columns: 1fr 4fr 1fr;"> | ||
<div class="h-screen bg-white pt-6"> | ||
<div class="mb-6"> | ||
<img src="{{asset('img/logo.PNG')}}" alt="Klass" style="height: 55px;" class="mx-auto"> | ||
</div> | ||
<div class="text-center mb-8"> | ||
<button class="py-1 px-9 bg-blue-500 text-white rounded hover:bg-blue-700"> | ||
<a href="#">Join a class</a> | ||
</button> | ||
</div> | ||
<div class="text-center border-r-2 border-blue-500"> | ||
<button class="py-1 px-9 bg-white text-black rounded"> | ||
<a href="#" class="text-sm">My Class</a> | ||
</button> | ||
</div> | ||
</div> | ||
|
||
<div class="bg-gray-100 pt-7"> | ||
@yield('maincontent') | ||
</div> | ||
|
||
<div class="h-screen bg-white pt-6"> | ||
<div class="mb-6 text-black text-base text-center"> | ||
<a href="#">{{ auth()->guard('student')->user()->name }}</a> | ||
<button class="px-1 pb-1 bg-red-500 text-white rounded hover:bg-red-600 ml-6"> | ||
<a href="#" class="text-xs">Logout</a> | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
@endsection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
@extends('layouts.app') | ||
|
||
@section('content') | ||
|
||
<div class="grid" style="grid-template-columns: 1fr 4fr 1fr;"> | ||
<div class="h-screen bg-white pt-6"> | ||
<div class="mb-12"> | ||
<img src="{{asset('img/logo.PNG')}}" alt="Klass" style="height: 55px;" class="mx-auto"> | ||
</div> | ||
|
||
@yield('nav') | ||
|
||
</div> | ||
<div class="bg-gray-100 pt-7"> | ||
|
||
@yield('maincontent') | ||
|
||
</div> | ||
<div class="h-screen bg-white pt-6"> | ||
<div class="mb-6 text-black text-base text-center"> | ||
<a href="#">{{ auth()->guard('student')->user()->name }}</a> | ||
<button class="px-1 pb-1 bg-red-500 text-white rounded hover:bg-red-600 ml-6"> | ||
<a href="#" class="text-xs">Logout</a> | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
@endsection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
@extends('layouts.app') | ||
|
||
@section('content') | ||
|
||
<div class="grid" style="grid-template-columns: 1fr 4fr 1fr;"> | ||
<div class="h-screen bg-white pt-6"> | ||
<div class="mb-6"> | ||
<img src="{{asset('img/logo.PNG')}}" alt="Klass" style="height: 55px;" class="mx-auto"> | ||
</div> | ||
<div class="text-center mb-8"> | ||
<button class="py-1 px-9 bg-blue-500 text-white rounded hover:bg-blue-700"> | ||
<a href="#">Create a class</a> | ||
</button> | ||
</div> | ||
<div class="text-center border-r-2 border-blue-500"> | ||
<button class="py-1 px-9 bg-white text-black rounded"> | ||
<a href="#" class="text-sm">My Class</a> | ||
</button> | ||
</div> | ||
</div> | ||
|
||
<div class="bg-gray-100 pt-7"> | ||
@yield('maincontent') | ||
</div> | ||
|
||
<div class="h-screen bg-white pt-6"> | ||
<div class="mb-6 text-black text-base text-center"> | ||
<a href="#">{{ auth()->guard('student')->user()->name }}</a> | ||
<button class="px-1 pb-1 bg-red-500 text-white rounded hover:bg-red-600 ml-6"> | ||
<a href="#" class="text-xs">Logout</a> | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
@endsection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.