Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3-forms_snischuk #176

Merged
merged 20 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
134 changes: 0 additions & 134 deletions homeworks/max.snischuk_snischuk/PokemonProject/about/about.css

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
20 changes: 20 additions & 0 deletions homeworks/max.snischuk_snischuk/PokemonProject/images/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,33 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./about.css">
<link rel="stylesheet" href="./styles/about.css">
<title>About</title>
</head>
<body>
<header class="header">
<div class="header__container">
snischuk marked this conversation as resolved.
Show resolved Hide resolved
<a href="../about/about.html">
<img src="../images/logo.png" alt="logo">
<a href="./index.html">
<img src="./images/logo.svg" alt="logo">
</a>
<nav class="header__nav">
<a class="header__nav-link" href="../pokemons/pokemons.html">Pokemons</a>
<a class="header__nav-link--active" href="../about/about.html">About</a>
<ul class="header__nav-list">
<li>
<a class="header__nav-link" href="./pokemons.html">Pokemons</a>
</li>
<li>
<a class="header__nav-link--active" href="./index.html">About</a>
</li>
<li>
<a class="header__nav-link" href="./login.html">Login</a>
</li>
</ul>
</nav>
</div>
</header>
<section class="about">
<div class="about__container">
<img class="about__image" src="../images/about.png" alt="pokemon">
<img class="about__image" src="./images/about.png" alt="pokemon">
<div class="about__content">
<h2 class="about__title">About me</h2>
<p class="about__text">
Expand Down
37 changes: 37 additions & 0 deletions homeworks/max.snischuk_snischuk/PokemonProject/login-success.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/login-success.css">
<title>Login page</title>
</head>
<body>
<header class="header">
<div class="header__container">
<a href="./index.html">
<img src="./images/logo.svg" alt="logo">
</a>
<nav class="header__nav">
<ul class="header__nav-list">
<li>
<a class="header__nav-link" href="./pokemons.html">Pokemons</a>
</li>
<li>
<a class="header__nav-link" href="./index.html">About</a>
</li>
</ul>
</nav>
</div>
</header>
<section class="success">
snischuk marked this conversation as resolved.
Show resolved Hide resolved
<img class="success__img" src="./images/icon-check-login.svg">
<h2 class="success__title">Login successful!</h2>
<p class="success__text">You have successfully signed into your account. You can return to home page and
continue using the platform.</p>
<a class="success__link" href="./index.html">Return to Home</a>
</section>
</body>
</html>
47 changes: 47 additions & 0 deletions homeworks/max.snischuk_snischuk/PokemonProject/login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles/login.css">
<title>Login page</title>
</head>
<body>
<header class="header">
<div class="header__container">
<a href="./index.html">
<img src="./images/logo.svg" alt="logo">
</a>
<nav class="header__nav">
<ul class="header__nav-list">
<li>
<a class="header__nav-link" href="./pokemons.html">Pokemons</a>
</li>
<li>
<a class="header__nav-link" href="./index.html">About</a>
</li>
<li>
<a class="header__nav-link--active" href="./login.html">Login</a>
</li>
</ul>
</nav>
</div>
</header>
<form class="login" action="./login-success.html">
<h2 class="login__title">Login page</h2>
<label class="login__label">
Email
<input class="login__field" type="email" placeholder="Enter your email address" required>
snischuk marked this conversation as resolved.
Show resolved Hide resolved
</label>
<label class="login__label">
Password
<input class="login__field" type="password" placeholder="Enter your password" required>
</label>
<input class="login__checkbox-input" type="checkbox" id="check" required>
<label class="login__checkbox-custom" for="check">I'm not a robot</label>
<button class="login__btn" type="submit">Login</button>
</form>
</body>
</html>
Loading