My SMM panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

57 line
1.6 KiB

  1. <!DOCTYPE html>
  2. <head>
  3. {{-- This section may need to be overwritten in descendants --}}
  4. @section('head-metas')
  5. <meta charset='utf-8'>
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <link rel="stylesheet" href="">
  8. <link rel="shortcut icon" type="image/jpg" href="/images/arrow-up.svg"/>
  9. @show
  10. <title>Trendplays - @yield('title')</title>
  11. </head>
  12. <body>
  13. <nav class='navigator' role="navigation">
  14. <a id='logo' href='/'>
  15. <h1>Trendplays</h1>
  16. <img src="/images/arrow-up.svg" height="30px" alt="">
  17. </a>
  18. @guest
  19. <form class= 'login' method='POST'>
  20. @csrf
  21. <div>
  22. <label for='sender_email'>Email</label>
  23. <input required type='email' name='sender_email' placeholder=''
  24. spellcheck='false'>
  25. </div>
  26. <div>
  27. <label for='sender_password'>Password</label>
  28. <input required type='password' name='sender_password' placeholder='' spellcheck='false'>
  29. </div>
  30. <button class='login-btn'type="login">Log in</button>
  31. </form>
  32. <div class="nav-toggle"><div>
  33. @endguest
  34. <span class="icon-bar"></span>
  35. <!-- probably not needed -->
  36. </nav>
  37. <div @if (count($errors) == 0) { hidden } @endif class='errors'>
  38. <ul>
  39. @foreach ($errors->all() as $error)
  40. <li>{{$error}}</li>
  41. @endforeach
  42. </ul>
  43. </div>
  44. @yield('content')
  45. <footer class='footer text-center'>
  46. <div class='foot-links'>
  47. <a href="/terms">Terms & Policy</a>
  48. <a href="mail:support@trendplays.com">Help</a>
  49. <a href="/reset-password">Reset Password</a>
  50. </div>
  51. <small>©Copyright 2021 Trendplays Network, Inc.</small>
  52. </footer>
  53. @yield('scripts')
  54. </body>