Examples of code I've written in PHP, Javascript, SCSS, etc.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

verify-email.blade.php 614 B

12345678910111213141516171819202122232425
  1. @extends('master')
  2. @section('title', 'Home')
  3. @section('heading-style', 'info-page')
  4. @section('head-metas')
  5. @parent
  6. <link rel="stylesheet" href="/css/panel.css">
  7. @endsection
  8. @section('content')
  9. <main>
  10. <div class="info-heading">
  11. <h3>To continue, we need to make sure your email address is yours. Click the verification link we've sent to you.</h3>
  12. <button id="resend_verification" class="brand-button">Resend</button>
  13. </div>
  14. </main>
  15. @endsection
  16. @section('scripts')
  17. @parent
  18. <script src="js/app.js"></script>
  19. <script src="js/chunk-vendors.js"></script>
  20. <!-- <script src="main.js"></script> -->
  21. @endsection