Examples of code I've written in PHP, Javascript, SCSS, etc.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

email-changed.blade.php 539 B

12345678910111213141516171819202122232425
  1. @extends('master')
  2. @section('title', 'Settings')
  3. @section('heading-style', 'info-page')
  4. @section('head-metas')
  5. @parent
  6. <link rel="stylesheet" href="{{asset('panel.css')}}">
  7. @endsection
  8. @section('content')
  9. <main>
  10. <div class="info-heading">
  11. <h3>Your email has been reset.</h3>
  12. <a href="/panel"><button class="brand-button">Return</button></a>
  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