fork download
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style type="text/css">
  5. #outer{
  6. position:fixed;
  7. top:0;
  8. left:0;
  9. width:100%;
  10. height:100%;
  11. background:#f0f0f0;
  12. }
  13. #inner{
  14. width: 50%;
  15. height: 70%;
  16. margin: 0 auto;
  17. margin-top: 50px;
  18. position: relative;
  19. background:white;
  20. padding: 20px;
  21. }
  22. .button {
  23. background-color: #4CAF50;
  24. border: none;
  25. color: white;
  26. padding: 15px 32px;
  27. text-align: center;
  28. text-decoration: none;
  29. display: inline-block;
  30. font-size: 16px;
  31. margin: 4px 2px;
  32. cursor: pointer;
  33. }
  34. .mail-footer{
  35. margin-top: 15px;
  36. text-align: center;
  37. }
  38. .mail-footer a{
  39. display: inline-block;
  40. width: 35px;
  41. height: 35px;
  42. background-color: #33383b;
  43. border-radius: 2px;
  44. font-size: 20px;
  45. color: #ffffff;
  46. text-align: center;
  47. line-height: 35px;
  48. margin-left: 3px;
  49. }
  50. </style>
  51. </head>
  52. <body>
  53. <div id=outer>
  54. <div id=inner>
  55. <h2>Hi {{$name}}</h2>
  56. <br>
  57. <p>Thanks for choosing BreakInterview !</p>
  58. <p>Your account has been created. Click on below button to verify your email</p>
  59. <div>
  60. <a class="button" href="{{$link}}">Verify Email</a>
  61. </div>
  62. <br>
  63. <p>Unable to see the above button? Click on the following link to verify:
  64. <strong><a href="{{$link}}">Link</a></strong> </p>
  65. <p>Important: Please ignore this e-mail, if you already verified your email.</p>
  66. <br>
  67. <p>Warm Regards,</p>
  68. <p>Team BreakInterview</p>
  69. </div>
  70. <div class="mail-footer">
  71. @include('admin.emails.social_footer')
  72. </div>
  73. </div>
  74. </body>
  75. </html>
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:5:5: error: invalid preprocessing directive #outer
    #outer{
     ^~~~~
prog.cpp:11:18: error: stray ‘#’ in program
       background:#f0f0f0;
                  ^
prog.cpp:13:5: error: invalid preprocessing directive #inner
    #inner{
     ^~~~~
prog.cpp:23:25: error: stray ‘#’ in program
       background-color: #4CAF50;
                         ^
prog.cpp:42:25: error: stray ‘#’ in program
       background-color: #33383b;
                         ^
prog.cpp:45:14: error: stray ‘#’ in program
       color: #ffffff;
              ^
prog.cpp:71:7: error: stray ‘@’ in program
       @include('admin.emails.social_footer')
       ^
prog.cpp:71:16: warning: character constant too long for its type
       @include('admin.emails.social_footer')
                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
prog.cpp:1:1: error: expected unqualified-id before ‘<’ token
 <!DOCTYPE html>
 ^
prog.cpp:7:7: error: ‘top’ does not name a type
       top:0;
       ^~~
prog.cpp:8:7: error: ‘left’ does not name a type
       left:0;
       ^~~~
prog.cpp:9:7: error: ‘width’ does not name a type
       width:100%;
       ^~~~~
prog.cpp:10:7: error: ‘height’ does not name a type
       height:100%;
       ^~~~~~
prog.cpp:11:17: error: found ‘:’ in nested-name-specifier, expected ‘::’
       background:#f0f0f0;
                 ^
prog.cpp:11:7: error: ‘background’ does not name a type
       background:#f0f0f0;
       ^~~~~~~~~~
prog.cpp:12:4: error: expected declaration before ‘}’ token
    }
    ^
stdout
Standard output is empty