Advertisement
adwas33

Untitled

Apr 12th, 2022
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.29 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="pl" xmlns="http://www.w3.org/1999/xhtml"
  3. xmlns:th="http://www.thymeleaf.org">
  4. <head>
  5. <meta charset="UTF-8" />
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  8. <link rel="preconnect" href="https://fonts.googleapis.com" />
  9. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
  10. <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap" rel="stylesheet" />
  11. <style style="display: none">
  12. * {
  13. padding: 0;
  14. margin: 0;
  15. box-sizing: border-box;
  16. display: block;
  17. }
  18. </style>
  19. <style style="display: none">
  20. @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
  21. </style>
  22. </head>
  23. <body>
  24. <div style="width: 100%; font-family: 'Poppins', sans-serif; background-color: #e5e5e5">
  25. <img src="https://i.imgur.com/ZSq5qftl.png" alt="Zdjęcie w banerze" style="margin: 0 auto; width: 600px; height: 245px; object-fit: cover" />
  26. <div style="max-width: 600px; margin: 0 auto; padding: 30px 40px; background-color: #fff">
  27. <h1 style="width: 100%; line-height: 36px; font-size: 24px; font-weight: 700; padding: 40px 0">Witaj w konkursie Elevator Pitch</h1>
  28. <p style="font-weight: 400; font-size: 18px; line-height: 27px; margin-bottom: 60px; width: 100%">
  29. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc vulputate libero et velit interdum, ac aliquet odio mattis.
  30. </p>
  31. <div style="padding: 40px 30px; margin-bottom: 70px; width: 100%; background: #474f5a; font-size: 18px">
  32. <h2 style="font-weight: 700; font-size: 18px; text-transform: capitalize; width: 100%; margin-bottom: 40px; color: #fff">
  33. Dane twojego zespołu:
  34. </h2>
  35. <p style="width: 100%; margin-bottom: 20px">
  36. <span style="color: #85bd4b; font-weight: 600; width: 100%">Nazwa zespołu</span>
  37. <span th:text="${user.getUsername()}" style="color: #fff; width: 100%">ZespółStartUp</span>
  38. </p>
  39. <p style="width: 100%; color: #85bd4b; margin-bottom: 20px">
  40. <span style="color: #85bd4b; font-weight: 600; width: 100%">Członkowie zespołu:</span>
  41. <span th:each="member :${user.getMembers()} " th:text="${member.getName()+' '+member.getSurname()}" style="color: #fff; width: 100%">Jan Kowalski<br/>
  42. Anna Nowak</span>
  43. </p>
  44.  
  45. </div>
  46. <h1 style="line-height: 36px; font-size: 24px; font-weight: 700; text-align: center; width: 100%; margin-bottom: 40px">
  47. Potwierdź adres email Twojego zespołu!
  48. </h1>
  49. <p style="font-weight: 400; font-size: 18px; text-align: center; line-height: 27px; margin-bottom: 60px; width: 100%">
  50. Potwierdź adres email klikając w link poniżej:
  51. </p>
  52. <div style="width: 100%; display: flex; justify-content: center">
  53. <a th:href="${validateLink}" href="#link"
  54. style="
  55. text-decoration: none;
  56. color: white;
  57. font-weight: 700;
  58. font-size: 18px;
  59. padding: 10px;
  60. text-transform: uppercase;
  61. background-color: #85bd4b;
  62. width: fit-content;
  63. margin: 0 auto 70px;
  64. ">Potwierdź e-mail</a>
  65. </div>
  66. <p style="font-weight: 400; font-size: 16px; line-height: 27px; margin-bottom: 1em; width: 100%">
  67. Jeśli powyższy przycisk nie działa, prosimy wejść w link ponizej:
  68. </p>
  69. <a th:href="${validateLink}" th:text="${validateLink}" href="" style="color: #85bd4b; font-weight: 400; font-size: 16px; margin-bottom: 75px"
  70. >https://loremipsum.pl/auth?=e2342e23d2d232dd222</a>
  71. <hr />
  72. <p style="font-weight: 400; font-size: 14px; line-height: 27px; margin-block: 25px 40px; width: 100%; color: #919191">
  73. Lorem ipsum dolor sit amet consectetur adipisicing elit. A porro aliquam laudantium vero nisi eveniet hic iusto laborum dolore ad, veniam
  74. quo ducimus consectetur in libero?
  75. </p>
  76. </div>
  77. </div>
  78. </body>
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement